/* Contato — cards, formulário, vídeo */
.lx-contact {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 1.4rem clamp(0.9rem, 3vw, 1.5rem) 3rem;
}

.lx-contact-hero {
  text-align: center;
  margin-bottom: 1.6rem;
  animation: lxFadeUp 0.55s ease both;
}

.lx-contact-hero .lx-kicker {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lx-muted);
}

.lx-contact-hero h1 {
  margin: 0.55rem 0 0;
  font-size: clamp(1.6rem, 4.5vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}

.lx-contact-hero h1 em {
  font-style: normal;
  color: var(--lx-orange);
}

.lx-contact-hero p {
  margin: 0.7rem auto 0;
  max-width: 28rem;
  color: var(--lx-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

@keyframes lxFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mode picker — lista vertical (ao lado do vídeo) */
.lx-modes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.lx-modes.is-hidden { display: none; }

.lx-mode {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  text-align: left;
  border: 1px solid var(--lx-border);
  background: var(--lx-surface);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  color: var(--lx-text);
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  animation: lxFadeUp 0.55s ease both;
  width: 100%;
}

.lx-mode:nth-child(1) { animation-delay: 0.05s; }
.lx-mode:nth-child(2) { animation-delay: 0.12s; }
.lx-mode:nth-child(3) { animation-delay: 0.19s; }

.lx-mode::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 106, 42, 0.22), transparent 65%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.lx-mode:hover,
.lx-mode:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 42, 0.55);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  outline: none;
}

.lx-mode:hover::after,
.lx-mode:focus-visible::after { opacity: 1; }

.lx-mode.is-active {
  border-color: var(--lx-orange);
  background: linear-gradient(180deg, rgba(255, 106, 42, 0.14), rgba(16, 18, 24, 0.92));
}

.lx-mode-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  margin: 0;
  flex-shrink: 0;
  transition: transform 0.25s ease, border-color 0.2s ease, background 0.2s ease;
}

.lx-mode:hover .lx-mode-icon,
.lx-mode.is-active .lx-mode-icon {
  transform: scale(1.06);
  border-color: rgba(255, 106, 42, 0.5);
  background: rgba(255, 106, 42, 0.12);
}

.lx-mode-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--lx-orange);
}

.lx-mode-copy {
  min-width: 0;
}

.lx-mode strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.lx-mode span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: var(--lx-muted);
  line-height: 1.35;
}

.lx-mode-go {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lx-orange);
  opacity: 0.85;
  white-space: nowrap;
}

.lx-mode:hover .lx-mode-go { opacity: 1; }

/* Workspace: lista/form à esquerda + vídeo à direita */
.lx-workspace {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
}

.lx-main-col {
  min-width: 0;
}

@media (min-width: 980px) {
  .lx-workspace {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .lx-video-card {
    position: sticky;
    top: 120px;
  }
}

.lx-panel {
  display: none;
  border: 1px solid var(--lx-border);
  background: var(--lx-surface-2);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  animation: lxFadeUp 0.35s ease both;
}

.lx-panel.is-open { display: block; }

.lx-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.lx-panel-head h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lx-panel-head p {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: var(--lx-muted);
}

.lx-back {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #fff;
  padding: 0.45rem 0.8rem;
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease;
}

.lx-back:hover { background: rgba(255, 255, 255, 0.06); }

.lx-form {
  display: grid;
  gap: 0.75rem;
}

.lx-grid-2 {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .lx-grid-2 { grid-template-columns: 1fr 1fr; }
}

.lx-field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lx-muted);
}

.lx-field input,
.lx-field select,
.lx-field textarea {
  margin-top: 0.35rem;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.95rem;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.lx-field input:focus,
.lx-field select:focus,
.lx-field textarea:focus {
  border-color: rgba(255, 106, 42, 0.55);
  background: rgba(0, 0, 0, 0.4);
}

.lx-field textarea { resize: vertical; min-height: 120px; }

.lx-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 0.25rem;
  padding: 16px 32px;
  border: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
  transition: all var(--transition-normal);
}

.lx-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.lx-submit:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

/* Video side */
.lx-video-card {
  border: 1px solid var(--lx-border);
  background: var(--lx-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  animation: lxFadeUp 0.55s ease both;
  animation-delay: 0.15s;
}

.lx-video-card h3 {
  margin: 0;
  padding: 0.95rem 1rem 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lx-video-card > p {
  margin: 0;
  padding: 0 1rem 0.85rem;
  font-size: 0.82rem;
  color: var(--lx-muted);
}

.lx-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.lx-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.lx-video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 106, 42, 0.22), transparent 55%),
    linear-gradient(180deg, #10131a, #07080a);
  cursor: pointer;
}

.lx-video-placeholder button {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(90deg, var(--lx-orange), var(--lx-orange-2));
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(255, 106, 42, 0.35);
  transition: transform 0.2s ease;
}

.lx-video-placeholder:hover button { transform: scale(1.06); }

.lx-video-placeholder button svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}

.lx-video-caption {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.78rem;
  color: var(--lx-muted);
}

/* Meet extras */
.lx-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.lx-slot {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 0.55rem 0.85rem;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.lx-slot:hover { border-color: rgba(255, 106, 42, 0.5); }
.lx-slot.is-selected {
  background: var(--lx-orange);
  border-color: var(--lx-orange);
}
.lx-slot.is-busy {
  opacity: 0.45;
  cursor: not-allowed;
  background: rgba(244, 63, 94, 0.12);
  border-color: rgba(244, 63, 94, 0.3);
}
.lx-slot.is-blocked {
  opacity: 0.4;
  cursor: not-allowed;
}

.lx-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.65rem 0;
}

.lx-legend span {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--lx-muted);
}

.lx-day-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  align-items: end;
}

.lx-day-nav button {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 0.8rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.lx-result {
  display: none;
  margin-top: 0.85rem;
  padding: 0.9rem;
  border: 1px solid rgba(46, 197, 255, 0.35);
  background: rgba(46, 197, 255, 0.08);
}

.lx-result.is-show { display: block; }

.lx-result strong {
  display: block;
  font-size: 0.85rem;
}

.lx-result p {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  color: var(--lx-muted);
}

.lx-muted-text {
  font-size: 0.82rem;
  color: var(--lx-muted);
}
