/* style.css */
html,
body {
  overflow-x: hidden;
}

.toggle-switch {
  position: relative;
  width: 100%;
  max-width: 530px;
  margin: 0 auto;
  height: 50px;
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px;
  margin: auto;
}

.toggle-input {
  display: none;
}

.toggle-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  background-color: #ddd;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  padding: 0 10px;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

.toggle-handle {
  width: 50%;
  height: 100%;
  background-color: #007bff;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  transition: left 0.3s ease, background-color 0.3s ease;
}

.toggle-text-left,
.toggle-text-right {
  position: relative;
  z-index: 1;
  font-weight: bold;
  color: gray;
  text-align: center;
  flex: 1;
}

.toggle-input:checked+.toggle-label .toggle-handle {
  left: 50%;
}

.toggle-input:not(:checked)+.toggle-label .toggle-text-left,
.toggle-input:checked+.toggle-label .toggle-text-right {
  color: white;
}

.custom-bg {
  background-color: #e1f1ff;
}

.custom-bg-purchase {
  background-color: #ecf8e8;
}

/* caixa padrão para todos os badges */
.store-badge {
  width: 190px;
  /* ajuste conforme o seu layout */
  height: 60px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* encaixa a arte na caixa */
  border-radius: 8px;
  /* opcional: cantos suaves */
}

/* imagens específicas (coloque o caminho correto dos seus arquivos) */
.badge-apple-pt {
  background-image: url('/static/Download_on_the_App_Store_Badge_PTBR_RGB_blk_092917.svg'); 
}

.badge-google-pt {
  background-image: url('/static/GetItOnGooglePlay_Badge_Web_color_Portuguese-BR.png');
}

.badge-apple-en {
  background-image: url('/static/Download_on_the_App_Store_Badge_US-UK_RGB_blk_092917.svg');
}

.badge-google-en {
  background-image: url('/static/GetItOnGooglePlay_Badge_Web_color_English.png');
}