:root {
  --color-ink: #121517;
  --color-paper: #f7f4ec;
  --color-surface: #ffffff;
  --color-sea: #007f8f;
  --color-sun: #f5b642;
  --color-coral: #e65437;
  --color-forest: #264f3c;
  --color-muted: #66716f;
  --color-line: rgba(18, 21, 23, 0.14);
  --shadow-soft: 0 18px 60px rgba(18, 21, 23, 0.16);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--color-ink);
  color: var(--color-paper);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

/* ── Language corner (fixed top-left) ──────────────────────────── */
.lang-corner {
  position: fixed;
  top: max(16px, env(safe-area-inset-top, 16px));
  left: 16px;
  z-index: 100;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(18, 21, 23, 0.72);
  color: #fff;
  backdrop-filter: blur(18px);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lang-toggle:hover {
  background: rgba(18, 21, 23, 0.92);
  border-color: rgba(255, 255, 255, 0.5);
}

.lang-chevron {
  width: 14px !important;
  height: 14px !important;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lang-corner.is-open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(18, 21, 23, 0.94);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top left;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-width: 68px;
}

.lang-corner.is-open .lang-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.lang-option {
  min-width: 56px;
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.lang-option.is-active {
  background: rgba(245, 182, 66, 0.2);
  color: var(--color-sun);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-sun);
  color: var(--color-ink);
  font-weight: 900;
}

.brand-text {
  letter-spacing: 0;
}



.floating-nav {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 9;
  transform: translateY(-50%);
  display: grid;
  gap: 8px;
}

.floating-nav a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(18, 21, 23, 0.68);
  color: #fff;
  box-shadow: 0 10px 28px rgba(18, 21, 23, 0.18);
  backdrop-filter: blur(14px);
}

.floating-nav span {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: max-width 180ms ease;
}

.floating-nav a:hover span,
.floating-nav a:focus-visible span {
  max-width: 160px;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 80px 24px 64px;
  color: #fff;
}

.hero-video,
.hero-fallback,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: center center;
  z-index: -3;
}

.hero-fallback {
  z-index: -4;
  background:
    linear-gradient(145deg, rgba(0, 127, 143, 0.88), rgba(38, 79, 60, 0.7)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.hero-overlay {
  z-index: -2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18) 56%, rgba(0, 0, 0, 0.45));
}

.hero-content {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: var(--color-sun);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-weight: 400;
  line-height: 0.94;
  text-transform: uppercase;
}

h1 {
  max-width: 920px;
  font-size: clamp(4rem, 12vw, 9.4rem);
}

.hero-content h1 {
  opacity: 0;
  animation: heroTextReveal 4s ease-in-out forwards;
}

@keyframes heroTextReveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

h2 {
  max-width: 820px;
  font-size: clamp(2.7rem, 6.2vw, 6.2rem);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.28rem);
  opacity: 0;
  animation: heroSubReveal 0.01s 4s forwards;
}

@keyframes heroSubReveal {
  to { opacity: 1; }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button.primary {
  background: var(--color-sun);
  color: var(--color-ink);
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 182, 66, 0.42);
  background: #f7c250;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* ── Hero Strip (fora do hero, abaixo do vídeo) ───────────────── */
.hero-strip {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-ink);
  color: #fff;
}

.hero-strip article {
  padding: 18px;
}

.hero-strip article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-strip strong,
.hero-strip span {
  display: block;
}

.hero-strip strong {
  font-size: 1.1rem;
  text-transform: uppercase;
}

.hero-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.section {
  padding: 96px 24px;
}

.section-light {
  background: var(--color-paper);
}

.section-dark {
  background: var(--color-ink);
  color: #fff;
}

.section-sand {
  background: #e9dfc9;
}

.section-grid,
.location-section,
.contact-section,
.section-heading,
.package-grid,
.experience-timeline,
.sponsors,
.site-footer {
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 56px;
  align-items: start;
}

.section-copy p:not(.eyebrow),
.location-copy p,
.contact-copy p {
  max-width: 680px;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px 16px;
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-list article:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(18, 21, 23, 0.08);
  border-color: var(--color-sea);
}

.feature-list svg {
  grid-row: span 2;
  color: var(--color-sea);
}

.feature-list p {
  margin: 0;
  color: var(--color-muted);
}

.section-heading {
  margin-bottom: 34px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #22282a;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  cursor: pointer;
}

.package-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.36);
}

.package-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background:
    linear-gradient(145deg, rgba(0, 127, 143, 0.62), rgba(245, 182, 66, 0.32)),
    #333;
  transition: filter 0.4s ease;
}

.package-card:hover img {
  filter: brightness(1.1) saturate(1.2);
}

.package-body {
  padding: 22px;
}

.tag {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(245, 182, 66, 0.16);
  color: var(--color-sun);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-body p:not(.tag) {
  color: rgba(255, 255, 255, 0.72);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--color-sun);
  font-weight: 900;
  text-transform: uppercase;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 46px;
  align-items: center;
}

.media-panel img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(38, 79, 60, 0.55), rgba(230, 84, 55, 0.25)),
    #d8d8d8;
}

/* ── Location Fade Slider ─────────────────────────────────────────────────────
   Para adicionar/remover fotos: inclua um <figure class="loc-slide"> no HTML
   e um <button class="loc-dot"> correspondente em .loc-dots.
   O JS detecta o total automaticamente — nenhuma outra mudança necessária.
   Spec de imagem: JPEG ou WebP · 1200×800 px · qualidade 82% · ≤ 220 KB
   ─────────────────────────────────────────────────────────────────────────── */
.location-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 2;           /* proporção 3:2 mantida em qualquer tela */
  background: var(--color-ink);  /* fundo visível durante o carregamento   */
}

/* Todas as slides empilhadas, invisíveis por padrão */
.loc-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  pointer-events: none;
  z-index: 0;
}

/* Slide SAINDO: fica visível embaixo enquanto a próxima entra por cima */
.loc-slide.is-leaving {
  opacity: 1;
  z-index: 1;   /* fica embaixo da entrante */
  pointer-events: none;
}

/* Slide ATIVA: entra por cima da sainte — crossfade real, sem preto */
.loc-slide.is-active {
  opacity: 1;
  z-index: 2;   /* acima da is-leaving */
  pointer-events: auto;
}

.loc-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: auto;
  will-change: opacity;
}

/* Dots de navegação */
.loc-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.loc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.loc-dot.is-active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.25);
}

.loc-dot:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(255, 255, 255, 0.9);
}

/* Ajuste responsivo: slider full-width em mobile */
@media (max-width: 980px) {
  .location-slider {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 720px) {
  .location-slider {
    aspect-ratio: 3 / 2;
  }
}

.place-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0 0;
}

.place-facts div {
  padding: 16px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--color-line);
}

.place-facts dt {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.place-facts dd {
  margin: 6px 0 0;
  font-weight: 900;
}

.experience-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.experience-timeline article {
  padding: 24px;
  border-left: 4px solid transparent;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
}

.experience-timeline span {
  display: block;
  margin-bottom: 24px;
  color: var(--color-coral);
  font-weight: 900;
}

.experience-timeline p {
  color: var(--color-muted);
}

.sponsors {
  text-align: center;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.logo-grid span {
  display: grid;
  min-height: 74px;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-muted);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: 42px;
  align-items: start;
  color: #fff;
  padding-left: max(24px, calc((100% - var(--max-width)) / 2));
  padding-right: max(24px, calc((100% - var(--max-width)) / 2));
}

.contact-section.section {
  width: 100%;
  max-width: none;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(18, 21, 23, 0.94), rgba(18, 21, 23, 0.76)),
    url("https://images.unsplash.com/photo-1493558103817-58b2924bce98?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.lead-form label {
  display: grid;
  gap: 7px;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-ink);
  padding: 0 13px;
}

.checkbox-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
  text-transform: none;
  color: rgba(255, 255, 255, 0.78);
}

.checkbox-row input {
  min-height: auto;
  margin-top: 3px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--color-sun);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 24px;
}

.site-footer p {
  margin: 10px 0 0;
  color: var(--color-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--color-muted);
  font-weight: 700;
}

.lucide {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}

@media (max-width: 980px) {
  .floating-nav {
    top: auto;
    right: 12px;
    bottom: 12px;
    left: 12px;
    transform: none;
    grid-template-columns: repeat(4, 1fr);
  }

  .floating-nav a {
    justify-content: center;
  }

  .floating-nav span {
    display: none;
  }

  .section-grid,
  .location-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .package-grid,
  .experience-timeline {
    grid-template-columns: 1fr 1fr;
  }

  /* Último card solo ocupa largura total */
  .package-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 480px;
    margin-inline: auto;
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 64px 16px 56px;
  }

  .hero-video {
    object-position: center center;
  }

  .hero-content {
    margin-bottom: 0;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-strip {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
  }

  .hero-strip article {
    padding: 12px 14px;
  }

  .hero-strip article + article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section {
    padding: 72px 16px;
  }

  .package-grid,
  .experience-timeline,
  .place-facts,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 84px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}


/* ══════════════════════════════════════════
   MOTION SYSTEM
══════════════════════════════════════════ */

/* ── Keyframes globais ────────────────────────────── */
@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

@keyframes pulseIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes floatNavIn {
  from { opacity: 0; transform: translateY(-50%) translateX(18px); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}

@keyframes floatNavInMobile {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* ── Hero — entrada cinemática ─────────────────────── */
.hero .eyebrow {
  animation: heroEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero h1 {
  animation: heroEntrance 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

.hero-copy {
  animation: heroEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.hero-actions {
  animation: heroEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.62s both;
}

.hero-strip {
  animation: heroEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

/* ── Stats — pulse in escalonado ───────────────────── */
.hero-strip strong {
  animation: pulseIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-strip article:nth-child(1) strong { animation-delay: 0.85s; }
.hero-strip article:nth-child(2) strong { animation-delay: 1.00s; }
.hero-strip article:nth-child(3) strong { animation-delay: 1.15s; }

/* ── Floating nav — entrada com delay ──────────────── */
.floating-nav {
  opacity: 0;
  animation: floatNavIn 0.7s ease 1.4s forwards;
}

@media (max-width: 980px) {
  .floating-nav {
    animation-name: floatNavInMobile;
  }
}

/* ── Floating nav — ocultar sobre formulário (iOS) ───── */
.floating-nav.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

/* ── Scroll spy — item ativo na floating nav ───────── */
.floating-nav a.is-active {
  background: rgba(245, 182, 66, 0.22);
  border-color: rgba(245, 182, 66, 0.5);
}

.floating-nav a.is-active i {
  color: var(--color-sun);
}

/* ── Scroll reveal — sistema universal ─────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal][data-delay="1"] { transition-delay: 0.10s; }
[data-reveal][data-delay="2"] { transition-delay: 0.20s; }
[data-reveal][data-delay="3"] { transition-delay: 0.30s; }
[data-reveal][data-delay="4"] { transition-delay: 0.40s; }
[data-reveal][data-delay="5"] { transition-delay: 0.50s; }

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ── Experience timeline — border progressiva ──────── */
.experience-timeline article {
  transition: border-color 0.5s ease, background 0.3s ease, transform 0.3s ease;
}

.experience-timeline article.is-visible {
  border-left-color: var(--color-sea);
}

.experience-timeline article:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(4px);
}

/* ── Logo grid hover ─────────────────────────────── */
.logo-grid span {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.logo-grid span:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(18, 21, 23, 0.1);
}

/* ── Form — focus states premium ───────────────────── */
.lead-form input:focus,
.lead-form select:focus {
  outline: none;
  border-color: var(--color-sun);
  box-shadow: 0 0 0 3px rgba(245, 182, 66, 0.22);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* \u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550
   SLIDER DE EXPERI\u00caNCIAS
\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550 */

.slider-section {
  position: relative;
  background: var(--color-ink);
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.slider-wrapper {
  overflow: hidden;
}

.slider-track {
  display: flex;
  will-change: transform;
  transition: transform 0.72s cubic-bezier(0.77, 0, 0.175, 1);
}

/* \u2500\u2500 Slide \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */
.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(580px, 72vh);
}

/* \u2500\u2500 Painel foto \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */
.slide-photo {
  position: relative;
  overflow: hidden;
}

.slide-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Enquadramento por slide */
.slide--1 .slide-photo img { object-position: center 40%; }
.slide--2 .slide-photo img { object-position: center 35%; }
.slide--3 .slide-photo img { object-position: center 30%; }


/* Gradientes placeholder \u2014 substitua pela foto autoral */
.slide-photo-bg {
  position: absolute;
  inset: 0;
}

/* Kite decorativo SVG inline como background */
.slide-photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cpath d='M120 24 L216 156 L120 126 L24 156 Z' fill='rgba(255,255,255,0.07)' /%3E%3Ccircle cx='120' cy='200' r='3' fill='rgba(255,255,255,0.15)'/%3E%3Cline x1='120' y1='126' x2='120' y2='200' stroke='rgba(255,255,255,0.1)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 55%;
  background-position: center 42%;
  background-repeat: no-repeat;
}

.slide--1 .slide-photo-bg {
  background: linear-gradient(145deg, #007f8f 0%, #264f3c 55%, #101618 100%);
}

.slide--2 .slide-photo-bg {
  background: linear-gradient(145deg, #1d4a3c 0%, #007f8f 45%, #0d1f2d 100%);
}

.slide--3 .slide-photo-bg {
  background: linear-gradient(145deg, #1a1e30 0%, #264f3c 38%, #007f8f 100%);
}

/* \u2500\u2500 Painel texto \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */
.slide-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 60px 56px 52px;
  color: #fff;
  position: relative;
}

/* Linha vertical decorativa */
.slide-copy::before {
  content: '';
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--color-sea), transparent);
  opacity: 0.5;
}

.slide-counter {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.15);
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.slide-copy .eyebrow {
  color: var(--color-sun);
  margin-bottom: 10px;
}

.slide-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  color: #fff;
  line-height: 0.92;
}

.slide-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  max-width: 440px;
  line-height: 1.68;
}

/* \u2500\u2500 Setas \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */
.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(calc(-50% - 18px)); /* sobe levemente do centro */
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 5;
}

.slider-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(18, 21, 23, 0.64);
  color: #fff;
  backdrop-filter: blur(12px);
  cursor: pointer;
  display: grid;
  place-items: center;
  pointer-events: all;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.slider-arrow:hover {
  background: rgba(245, 182, 66, 0.2);
  border-color: rgba(245, 182, 66, 0.55);
  transform: scale(1.08);
}

.slider-arrow .lucide {
  width: 18px;
  height: 18px;
}

/* \u2500\u2500 Barra de progresso \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */
.slider-progress {
  position: absolute;
  bottom: 42px; /* alinha acima dos dots */
  left: 0;
  height: 2px;
  background: var(--color-sun);
  width: 0%;
  opacity: 0.7;
  z-index: 3;
}

/* \u2500\u2500 Dots de navega\u00e7\u00e3o \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 0 16px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition: background 0.28s ease, width 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.28s ease;
}

.slider-dot.is-active {
  background: var(--color-sun);
  width: 28px;
}

.slider-dot:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.48);
  transform: scale(1.2);
}

/* ── Responsivo mobile ───────────────────────────────────────── */
@media (max-width: 720px) {
  .slide {
    grid-template-columns: 1fr;
    grid-template-rows: auto clamp(220px, 52vw, 320px); /* texto ↑ foto ↓ */
    min-height: auto;
  }

  .slide-copy {
    order: 1; /* texto no topo */
    padding: 28px 20px 20px 24px;
  }

  .slide-photo {
    order: 2; /* foto embaixo */
  }

  .slide-copy::before {
    display: none;
  }

  .slide-counter {
    display: none; /* oculto — números removidos */
  }

  .slider-arrows {
    display: none; /* mobile usa swipe + dots */
  }

  .slider-progress {
    bottom: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
