/* ============ CIGA design · Blue Planet LP ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: #000;
  font-family: 'Montserrat', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.lp {
  max-width: 1500px;
  margin: 0 auto;
  background: #000;
}

.lp-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Slots de vídeo (posições dos quadrados na arte) ---------- */
/* Vídeos quadrados (1080x1080), exibidos em 1:1 como na arte:
   no celular ocupam a largura do quadrado; no desktop ficam
   centralizados com largura limitada. */
.video-slot {
  position: relative;
  width: 94%;              /* quadrado vermelho: x 45–1455 de 1500px */
  max-width: 800px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  background: #000;
  overflow: hidden;
  border-radius: clamp(12px, 2.6vw, 40px);
}

/* Botão de som sobre o vídeo */
.sound-toggle {
  position: absolute;
  right: clamp(10px, 2.4vw, 22px);
  bottom: clamp(10px, 2.4vw, 22px);
  width: clamp(42px, 9vw, 54px);
  height: clamp(42px, 9vw, 54px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232, 161, 60, 0.7);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #E8A13C;
  cursor: pointer;
  transition: background .25s ease, box-shadow .25s ease;
}

.sound-toggle svg { width: 55%; height: 55%; }
.sound-toggle .sound-toggle__on { display: none; }
.sound-toggle[aria-pressed="true"] .sound-toggle__on { display: block; }
.sound-toggle[aria-pressed="true"] .sound-toggle__off { display: none; }

.sound-toggle:hover,
.sound-toggle:focus-visible {
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 16px rgba(232, 161, 60, 0.6);
  outline: none;
}

.video-slot__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Hotspots clicáveis sobre os CTAs da arte ---------- */
.cta-wrap {
  position: relative;
}

.cta-hotspot {
  position: absolute;
  display: block;
  border-radius: 999px;
  cursor: pointer;
  transition: box-shadow .3s ease, background .3s ease;
}

.cta-hotspot:hover,
.cta-hotspot:focus-visible {
  background: rgba(232, 159, 48, 0.10);
  box-shadow: 0 0 24px rgba(232, 159, 48, 0.45);
  outline: none;
}

/* ---------- Carrossel de produtos (dobra 9) ---------- */
.carousel {
  position: relative;
  background: #000;
  padding: clamp(8px, 1.5vw, 20px) clamp(44px, 7vw, 96px);
}

.carousel__track {
  display: flex;
  gap: clamp(10px, 1.8vw, 24px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar { display: none; }

.carousel__item {
  flex: 0 0 clamp(150px, 40vw, 300px);
  scroll-snap-align: center;
  border-radius: clamp(8px, 1.4vw, 16px);
  overflow: hidden;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
}

.carousel__item img {
  display: block;
  width: 100%;
  height: auto;
}

.carousel__item:hover,
.carousel__item:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 0 22px rgba(232, 161, 60, 0.45);
  outline: none;
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: clamp(34px, 5.5vw, 52px);
  height: clamp(34px, 5.5vw, 52px);
  padding: 6px;
  border: 0;
  background: none;
  color: #E8A13C;
  cursor: pointer;
  transition: transform .25s ease, filter .25s ease;
}

.carousel__arrow svg { width: 100%; height: 100%; }

.carousel__arrow--prev { left: clamp(2px, 1vw, 24px); }
.carousel__arrow--next { right: clamp(2px, 1vw, 24px); }

.carousel__arrow:hover,
.carousel__arrow:focus-visible {
  filter: drop-shadow(0 0 10px rgba(232, 161, 60, 0.9));
  transform: translateY(-50%) scale(1.12);
  outline: none;
}

/* ---------- Formulário (dobra 10) ---------- */
.form-section {
  background: #fff;
  clip-path: polygon(0 3.2%, 100% 0, 100% 100%, 0 100%);
  padding: clamp(64px, 10vw, 140px) 6% clamp(48px, 7vw, 110px);
}

.form-section__inner {
  max-width: 980px;
  margin: 0 auto;
}

.form-section__title {
  text-align: center;
  color: #111;
  font-size: clamp(26px, 4.6vw, 58px);
  font-weight: 400;
  letter-spacing: .01em;
  margin-bottom: clamp(36px, 5vw, 70px);
}

.form-section__title strong { font-weight: 800; }
.form-section__title span   { color: #E8A13C; }

/* Honeypot: fora da tela e inerte para humanos, visível para bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.field {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #d9d9d9;
  border-radius: 14px;
  background: #fdfdfd;
  padding: clamp(14px, 2.4vw, 24px) clamp(16px, 2.8vw, 30px);
  margin-bottom: clamp(16px, 2.6vw, 28px);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.field:focus-within {
  border-color: #E8A13C;
  box-shadow: 0 0 0 3px rgba(232, 161, 60, 0.15);
}

.field__icon {
  flex: 0 0 auto;
  width: clamp(20px, 2.6vw, 30px);
  height: clamp(20px, 2.6vw, 30px);
  color: #D89A3F;
}

.field__icon svg { width: 100%; height: 100%; }

.field input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: clamp(16px, 2.2vw, 24px);
  color: #333;
}

.field input::placeholder { color: #8a8a8a; }

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-top: clamp(28px, 4vw, 56px);
  padding: clamp(16px, 2.6vw, 26px);
  border: 1.5px solid #E8A13C;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-family: inherit;
  font-size: clamp(16px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: .35em;
  text-indent: .35em;
  cursor: pointer;
  transition: box-shadow .3s ease, transform .2s ease;
}

.submit-btn svg {
  width: clamp(20px, 2.6vw, 32px);
  height: clamp(20px, 2.6vw, 32px);
  color: #D89A3F;
}

.submit-btn:hover,
.submit-btn:focus-visible {
  box-shadow: 0 0 28px rgba(232, 161, 60, 0.5);
  transform: translateY(-1px);
  outline: none;
}

.submit-btn:disabled { opacity: .6; cursor: wait; }

.form-msg {
  margin-top: 18px;
  text-align: center;
  font-size: clamp(14px, 1.8vw, 18px);
  color: #1a7f37;
  min-height: 1.4em;
}

.form-msg--error { color: #b3261e; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cta-hotspot, .submit-btn, .field { transition: none; }
}
