/* ============================
   MUVNET STYLES.CSS
   Custom CSS para otimizar navegação, SEO e desempenho
   ============================ */

/* Base reset e performance */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  background-color: #ffffff;
  color: #1f2937;
  /* gray-800 */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Acessibilidade e foco */
a:focus,
button:focus {
  outline: 2px solid #3b82f6;
  /* blue-500 */
  outline-offset: 2px;
}

/* Cabeçalho fixo responsivo */
header {
  position: relative;
  z-index: 50;
}

/* Navbar fixa superior */
nav {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 40;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Dropdown menus */
[x-cloak] {
  display: none !important;
}

/* Responsividade (ajustes finos) */
@media (max-width: 768px) {
  nav ul {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  header .space-x-6 {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Botão primário */
.btn-primary {
  background-color: #ffffff;
  color: #2563eb;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.btn-primary:hover {
  background-color: #e0ecff;
}

/* Otimização para SEO */
section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
}

p {
  margin-bottom: 1rem;
  color: #4b5563;
  /* gray-600 */
}

ul {
  list-style: none;
  padding: 0;
}

/* Loader placeholder */
.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3b82f6;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Carrossel full-width */
.carousel img {
  width: 100vw;
  height: auto;
  object-fit: cover;
}

.carousel-indicators button {
  transition: all 0.3s;
}

.carousel-indicators button[aria-current="true"] {
  background-color: #3b82f6;
  width: 0.75rem;
  height: 0.75rem;
}

.carousel-indicators button:hover {
  background-color: #60a5fa;
}

/* Ajuste do botão do carrossel */
[data-carousel-prev],
[data-carousel-next] {
  transition: background-color 0.2s;
}

[data-carousel-prev]:hover,
[data-carousel-next]:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Acessibilidade nas bolinhas */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

/* Ícones de check azul */
li span.text-check-600 {
  color: #0000ff;
}

/* Background reutilizável - imagem de fundo Club Muvnet */
.bg-club-muvnet {
  background-image: url('img/club-muvnet-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================
   HERO – Fibra Óptica Comercial
   Complementos ao Tailwind
   ============================ */

/* Garante empilhamento correto e cobertura total da imagem */
#fibra-comercial {
  position: relative;
  isolation: isolate;
}

/* Figura de fundo sempre cobrindo a área do hero */
#fibra-comercial figure,
#fibra-comercial figure>picture,
#fibra-comercial figure>img {
  width: 100%;
  height: 100%;
  display: block;
}

#fibra-comercial figure>img {
  object-fit: cover;
  object-position: center;
  /* melhora nitidez em telas retina sem exagero */
  image-rendering: auto;
}

/* Suaviza fontes grandes do h1 */
#fibra-comercial h1 {
  font-feature-settings: "kern", "liga", "clig", "calt";
  letter-spacing: -0.02em;
  /* fallback caso o Tailwind não esteja aplicando tamanhos esperados */
  font-size: clamp(2rem, 3vw + 1rem, 3.75rem);
  line-height: 1.1;
}

/* Melhora a leitura do parágrafo em cima do overlay */
#fibra-comercial p {
  text-shadow: 0 1px 1px rgba(0, 0, 0, .15);
}

/* Bullets alinhados e com clique confortável */
#fibra-comercial ul li {
  line-height: 1.4;
  padding-left: 2px;
  /* dá respiro ao dot */
}

/* Botões: toque confortável em mobile */
#fibra-comercial a[role],
#fibra-comercial a[href*="whatsapp"],
#fibra-comercial a[href^="tel:"],
#fibra-comercial .btn {
  min-height: 44px;
}

/* Animações suaves somente quando o usuário permite */
@media (prefers-reduced-motion: reduce) {
  #fibra-comercial * {
    animation: none !important;
    transition: none !important;
  }
}

/* Alto contraste ( melhora acessibilidade ) */
@media (prefers-contrast: more) {

  #fibra-comercial .bg-blue-600,
  #fibra-comercial .bg-blue-700 {
    filter: contrast(1.1) saturate(1.05);
  }
}

/* Larguras muito grandes: aumenta um pouco o hero */
@media (min-width: 1280px) {
  #fibra-comercial img {
    object-position: 60% center;
    /* puxe o foco um pouco para a direita se precisar */
  }
}

#faq-header h1 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* deixa o H2 onde está azul branco */
.bg-blue-700 h2 {
  color: #ffffff !important;
}


[class*="bg-blue-"] h1,
[class*="bg-blue-"] h2 {
  color: #ffffff !important;
}

section,
footer {
  margin-top: 0;
  margin-bottom: 0;
}

/* === GUIA DO CLIENTE - SECTION 1 === */
section {
  scroll-margin-top: 80px;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

a:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

a img {
  transition: transform 0.3s ease;
}

#usandowifi img {
  transition: transform 0.3s ease;
}

#usandowifi img:hover {
  transform: scale(1.05);
}

/* Animação de transição suave dos modais */
[x-cloak] {
  display: none !important;
}

@media (max-width: 640px) {
  .modal-content {
    width: 90%;
    padding: 1.5rem;
  }
}


/* Delay para animações em sequência */
.animate-pulse.delay-100 {
  animation-delay: 0.2s;
}

.animate-pulse.delay-200 {
  animation-delay: 0.4s;
}

.animate-pulse.delay-300 {
  animation-delay: 0.6s;
}


/* Animação suave de bounce */
@keyframes bounce-slow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.animate-bounce-slow {
  animation: bounce-slow 2.5s ease-in-out infinite;
}

.animate-bounce-slow.delay-100 {
  animation-delay: 0.3s;
}

.animate-bounce-slow.delay-200 {
  animation-delay: 0.6s;
}



@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fade-in 0.3s ease-out;
}


/* SEÇÃO APPS */
.apps-section {
  padding: 60px 20px;
  position: relative;
}

.apps-title {
  font-size: 24px;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 20px;
}

.apps-carousel-container {
  display: flex;
  align-items: center;
  position: relative;
}

.apps-carousel {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  gap: 40px;
  padding: 20px 40px;
  width: 100%;
}

.app-card {
  min-width: 260px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  color: #111;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform .3s ease;
}

.app-card:hover {
  transform: translateY(-5px);
}

.app-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}


.apps-arrow {
  background: #2563eb;
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: .3s;
}

.apps-arrow:hover {
  background: #1d4ed8;
}

.apps-arrow.left {
  margin-right: 10px;
}

.apps-arrow.right {
  margin-left: 10px;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .app-card {
    min-width: 70%;
  }
}


/* =========================
   Zapping (Lite+ / Full)
   ========================= */

.tv-zapping-wrap {
  margin-top: 14px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b2a66, #0a3b9a);
  color: #fff;
  padding: 18px;
}

.tv-zapping-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.tv-zapping-title {
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0;
}

.tv-zapping-sub {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.35;
  max-width: 58ch;
}

.tv-zapping-toggle {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.tv-toggle-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.tv-toggle-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
}

.tv-toggle-btn.is-active {
  background: #ffffff;
  color: #0b2a66;
  border-color: #ffffff;
}

.tv-price {
  font-weight: 900;
  font-size: 0.9rem;
  opacity: 0.95;
}

.tv-zapping-badge {
  display: inline-block;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 8px 10px;
  border-radius: 999px;
  margin: 10px 0 14px;
}

.tv-badge-lite {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.tv-badge-full {
  background: rgba(255, 214, 0, 0.20);
  border: 1px solid rgba(255, 214, 0, 0.35);
}

/* Grid de canais */
.tv-channels-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

/* Responsivo */
@media (max-width: 1024px) {
  .tv-channels-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .tv-channels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tv-zapping-wrap {
    padding: 14px;
  }
}

/* Card do canal */
.tv-channel-card {
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 10px 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  text-align: center;
}

.tv-channel-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.tv-channel-logo {
  width: 100%;
  height: 58px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

.tv-channel-logo img {
  max-width: 92%;
  max-height: 44px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.tv-channel-name {
  margin-top: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}

/* Nota final */
.tv-zapping-note {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.92rem;
}

/* ===== Ver mais (Lite+) ===== */
.tv-channels-grid {
  position: relative;
  transition: max-height 0.35s ease;
}

/* Mostra só um “pedaço” do grid quando colapsado */
.tv-channels-grid.is-collapsed {
  max-height: 260px;
  /* ajuste conforme seu layout */
  overflow: hidden;
}

/* Fade embaixo para indicar que tem mais */
.tv-channels-grid.is-collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  pointer-events: none;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.18),
      rgba(0, 0, 0, 0.35));
  border-radius: 12px;
}

/* Container do botão */
.tv-channels-more {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

/* Botão */
.tv-more-btn {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(6px);
}

.tv-more-btn:hover {
  background: rgba(255, 255, 255, 0.20);
  border-color: rgba(255, 255, 255, 0.30);
  transform: translateY(-1px);
}

/* Colapsa (mostra só a primeira “faixa” de cards) */
.tv-channels-grid.is-collapsed {
  max-height: 210px;
  /* ajuste fino conforme seu card */
  overflow: hidden;
}



/* ============================
   APPS ADD-ON (mobile first)
============================ */
.apps-addon {
  margin-top: 14px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f9fafb;
}

.apps-addon-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}

.apps-addon-title {
  font-weight: 800;
  color: #111827;
  font-size: 14px;
}

.apps-addon-sub {
  font-size: 12px;
  color: #6b7280;
}

.apps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  margin-top: 10px;
}

.apps-row-premium {
  border-color: #ffd54d;
  background: #fffaf0;
}

.apps-row-left {
  flex: 1;
  min-width: 0;
}

.apps-row-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.apps-row-label strong {
  font-size: 13px;
  color: #111827;
}

.apps-row-price {
  font-size: 12px;
  font-weight: 800;
  color: #2563eb;
  white-space: nowrap;
}

.apps-hint {
  font-size: 11px;
  color: #6b7280;
  margin-top: 6px;
}

.apps-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}

.apps-icons::-webkit-scrollbar {
  height: 6px;
}

.apps-icons::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 99px;
}

.app-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #ffffff;
  object-fit: contain;
  border: 1px solid #e5e7eb;
  flex: 0 0 auto;
}

.apps-plus {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid #2563eb;
  background: #fff;
  color: #2563eb;
  font-weight: 900;
  flex: 0 0 auto;
}

.apps-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 12px;
  color: #111827;
}

/* ============================
   SWITCH (toggle)
============================ */
.switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 30px;
  flex: 0 0 auto;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d1d5db;
  border-radius: 999px;
  transition: 0.2s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  top: 4px;
  background: white;
  border-radius: 999px;
  transition: 0.2s;
}

.switch input:checked+.slider {
  background-color: #16a34a;
}

.switch input:checked+.slider:before {
  transform: translateX(24px);
}

/* ============================
   MODAL
============================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, .55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 9999;
}

.modal-overlay.is-open {
  display: flex;
}

.modal {
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.modal-wide {
  max-width: 720px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-weight: 900;
}

.modal-title {
  font-size: 16px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 8px;
  padding-right: 44px;
}

.modal-sub {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 12px;
}

.modal-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-icons img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  object-fit: contain;
}

/* ============================
   SIGNUP FORM (step-by-step)
============================ */
.signup-form {
  margin-top: 6px;
}

.stepper {
  display: flex;
  gap: 10px;
  margin: 10px 0 16px;
}

.step {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
  background: #e5e7eb;
  color: #111827;
}

.step.is-active {
  background: #2563eb;
  color: #fff;
}

.step-pane {
  display: none;
}

.step-pane.is-active {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-grid label span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.form-grid input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
}

.form-grid input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 800;
}

.btn-secondary {
  background: #111827;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 800;
}

.geo-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.btn-geo {
  border: 1px solid #2563eb;
  background: #fff;
  color: #2563eb;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 900;
}

.geo-status {
  font-size: 12px;
  color: #6b7280;
}



/* grid de ícones dentro do modal (mobile first) */
.muv-apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (min-width:480px) {
  .muv-apps-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.muv-app-ico {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 10px;
}


.muv-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999
}

.muv-modal.is-open {
  display: block
}

.muv-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55)
}

.muv-modal__panel {
  position: relative;
  width: min(720px, calc(100% - 24px));
  margin: 16px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  overflow: hidden;
  max-height: calc(100dvh - 32px);
  display: flex;
  flex-direction: column;
}

.muv-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid #e5e7eb;
}

.muv-modal__title {
  font-weight: 800;
  font-size: 18px;
  color: #0b2d6b;
  margin: 0
}

.muv-modal__sub {
  margin: 4px 0 0;
  color: #4b5563;
  font-size: 13px
}

.muv-modal__close {
  border: 0;
  background: #f3f4f6;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 16px
}

.muv-modal__body {
  padding: 14px 16px;
  overflow: auto
}

.muv-steps {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px
}

.muv-step {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
  background: #e5e7eb;
  color: #374151
}

.muv-step.is-active {
  background: #1d4ed8;
  color: #fff
}

.muv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width:640px) {
  .muv-grid {
    grid-template-columns: 1fr 1fr
  }
}

.muv-field label {
  display: block;
  font-size: 12px;
  color: #374151;
  font-weight: 700;
  margin-bottom: 6px
}

.muv-field input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  outline: none;
  font-size: 14px;
}

.muv-field input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .15)
}

.muv-location {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.muv-location__btn {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c7d2fe;
  background: #eef2ff;
  color: #1e40af;
  font-weight: 800;
  cursor: pointer;
}

.muv-location__hint {
  font-size: 12px;
  color: #4b5563;
  margin: 0
}

.muv-modal__footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 12px 16px 14px;
  border-top: 1px solid #e5e7eb;
  background: #fff
}

.muv-btn {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-weight: 800;
  cursor: pointer
}

.muv-btn:disabled {
  opacity: .5;
  cursor: not-allowed
}

.muv-btn--primary {
  border-color: #1d4ed8;
  background: #1d4ed8;
  color: #fff
}

.muv-form-note {
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 12px
}

.tv-zapping-wrap {
  overflow: visible;
}

.tv-zapping-header {
  overflow: visible;
}

.tv-toggle {
  overflow: visible;
}

.tv-zapping-wrap {
  overflow: visible;
}

.tv-zapping-header {
  overflow: visible;
}

.tv-toggle {
  overflow: visible;
}