  /* Container Styling with Higher Opacity */
  .service-box {
    border-radius: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    padding: 2em;
    background-color: rgba(0, 0, 0, 0.1); /* Increased opacity for better visibility */
    color: #f8f9fa;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }

  /* Title Styling */
  .service-title {
    font-size: 1.8em;
    margin-bottom: 1.5em;
    color: #ff6000;
  }

  /* Comparison Container */
/* Ajuste refinado para o comparison-container */
.comparison-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 2rem;
}

.gif-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 9/16; /* garante proporção igual vertical */
  overflow: hidden;
}

.gif-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* mantém o GIF preenchido e cortado se necessário */
  border-radius: 15px;
}


/* Pequena melhora em telas médias */
@media (max-width: 1024px) {
  .gif-wrapper {
    max-width: 350px;
  }
}

/* Em telas pequenas mantém total largura */
@media (max-width: 768px) {
  .gif-wrapper {
    max-width: 100%;
  }
}


  .gif-wrapper img:hover {
    box-shadow: 0 8px 16px rgba(0, 255, 127, 0.3);
  }

  /* FPS Info Styling with Higher Opacity and Shadow */
.fps-card {
  background: rgba(0,0,0,0.6);
  border-radius: 12px;
  padding: 1rem;
  width: 220px;
  margin: 1rem;
  font-family: sans-serif;
  color: #fff;
}

.fps-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.fps-card-header img {
  width: 60px;
  height: 30px;
  object-fit: contain;
}



.label {
  font-weight: bold;
}

.toggle-icon {
  width: 40px;
  height: 20px;
  border-radius: 10px;
  background: #333;
  position: relative;
}

.toggle-icon::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.toggle-icon.on {
  background: #2eff3c;
}

.toggle-icon.on::before {
  left: 22px;
}

.fps-values {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 0.5rem;
}

.blog-card-text {
  color: #ddd;
}

.blog-card-text a {
  color: #fff; /* mantém links destacados */
}

.blog-card-text a:hover {
  color: #ff6000; /* cor do hover laranja */
}


.fps-number {
  font-size: 1.2rem;
  font-weight: bold;
}
.fps-card.on {
  border: 1px solid #ff6000;
  border-radius: 8px;
  box-shadow: 0 0 195px rgba(255, 96, 0, 1);
}

.media-wrapper iframe {
  margin-top: 10px; /* sobe um pouco */
}


.fps-card.on .fps-number {
  color: #2eff3c;
}

.fps-card.off {
  border: 1px solid #000;
}

.fps-card.off .fps-number {
  color: #ff2626;
}

.toggle-icon.off {
  background: #555;
}

.fps-card.overlay {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  box-sizing: border-box;
  z-index: 2;
  background: rgba(0,0,0,0.87);
  padding: 8px 12px;
}


  /* Header Card Background Styling */
  .header-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    background-color: rgba(0, 0, 0, 0.3); /* Background with 70% opacity */
    padding: 0.5em 1.5em;
    border-radius: 8px;
    margin-bottom: 0.2em;
  }

  .header-title {
    font-size: 1em;
    font-weight: bold;
    color: #ff6000;
  }

  /* Toggle Switch Using Images */
  .toggle-switch {
    position: relative;
    width: 40px;
    height: 20px;
  }

  .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .toggle-switch label {
    display: inline-block;
    width: 40px;
    height: 20px;
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease;
  }

  .toggle-switch input:not(:checked) + label {
    background-image: url('assets/images/toggle/OFF.png');
  }

  .toggle-switch input:checked + label {
    background-image: url('assets/images/toggle/ON.png');
  }

  /* Text Content */
  .service-text {
    font-size: 1.1em;
    color: #dcdcdc;
  }

  /* Responsive Adjustments */
  @media (max-width: 1024px) {
    .comparison-container {
      flex-wrap: wrap;
      gap: 1em;
    }

    .gif-wrapper {
      max-width: 50%;
    }

    .fps-info {
      font-size: 1em;
    }
  }

  @media (max-width: 768px) {
    .comparison-container {
      flex-direction: column;
      gap: 1em;
    }

    .service-box {
      padding: 1.5em;
    }

    .service-title {
      font-size: 1.5em;
    }

    .gif-wrapper {
      max-width: 100%;
    }

    .fps-info {
      width: 90%;
      font-size: 0.95em;
    }
  }

  @media (max-width: 480px) {
    .service-box {
      padding: 1em;
    }

    .service-title {
      font-size: 1.2em;
    }

    .fps-info {
      font-size: 0.85em;
    }

    .header-title {
      font-size: 0.9em;
    }
  }


.alert {
  padding: 10px !important;
  margin-bottom: 15px !important;
  border-radius: 5px !important;
  font-size: 14px !important;
  border: 1px solid transparent !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
}

.alert-success {
  color: #155724 !important;
  background: #d4edda !important;
  border-color: #c3e6cb !important;
}

.alert-warning {
  color: #856404 !important;
  background: #fff3cd !important;
  border-color: #ffeeba !important;
}

.btn-primary {
  background-color: rgb(153, 234, 113); /* Cor de fundo laranja */
  color: #fff; /* Cor do texto branca */
  border: none; /* Remove a borda padrão */
  padding: 10px 20px; /* Espaçamento interno */
  font-size: 14px; /* Tamanho da fonte */
  font-weight: bold; /* Texto em negrito */
  border-radius: 5px; /* Bordas arredondadas */
  cursor: pointer; /* Indicador de clique */
  transition: background-color 0.3s ease, transform 0.2s ease; /* Efeitos de transição */
}

.btn-primary:hover {
  background-color: rgb(153, 234, 113); /* Cor laranja mais clara no hover */
  transform: scale(1.05); /* Aumenta levemente o botão */
}

.btn-primary:active {
  background-color: rgb(153, 234, 113); /* Cor laranja mais escura no clique */
  transform: scale(0.95); /* Reduz levemente o botão */
}

.btn-primary:focus {
  outline: none; /* Remove o contorno padrão */
  box-shadow: 0 0 5px rgb(153, 234, 113); /* Efeito de foco com sombra */
}

/* Wrapper para centralizar o formulário */
.discount-form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #121212;
}

/*=========================================*/

/* Estilo do formulário */
.discount-form {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.apply-cupom-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.input-group {
  display: flex;
  align-items: stretch; /* Garante altura uniforme */
  background-color: #151515; /* Fundo escuro */
  border: 1px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  background-image: linear-gradient(#151515, #151515),
    linear-gradient(to right, #ff6000, #ff6000, #ff6000, #ff6000); /* Gradiente nas bordas */
  background-origin: border-box;
  background-clip: content-box, border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group:focus-within {
  border-color: #ff6000;
  box-shadow: 0 0 10px rgba(153, 234, 113, 0.8); /* Glow laranja */
}

.icon-wrapper {
  padding: 0 12px;
  color: #6c6c6c;
  display: flex;
  align-items: center;
  border-right: 1px solid #333;
}

.form-control {
color: #aaa;
}

.form-control::placeholder {
  color: #555; /* Placeholder discreto */
  font-style: italic;
}

.form-control:focus {
  background-color: transparent; /* Fundo permanece transparente */
  color: #fff; /* Texto mais claro ao focar */
}

.btn-apply2 {
  background-color: #ff6000;
  color: #000;
  border: none;
  font-size: 14px; /* Tamanho do texto ajustado ao input */
  font-weight: bold;
  cursor: pointer;
  padding: 0 16px; /* Remove padding vertical e ajusta horizontal */
  display: flex;
  align-items: center; /* Centraliza o texto verticalmente */
  height: 100%; /* Garante que o botão tenha a mesma altura do input */
  transition: all 0.3s ease;
}

.btn-apply2:hover {
  background-color: #ff6000;
}


.alert {
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 6px;
  color: #fff;
}

.alert-success {
  background-color: #28a745;
}

.alert-warning {
  background-color: #ffc107;
  color: #000;
}
/*=========================================*/


  .action-btn.resgate-btn {
    background-color: #ff6000;
    color: #fff;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .action-btn.resgate-btn:hover {
    background-color: #ff6000;
    transform: scale(1.05);
  }

  .action-btn.resgate-btn:active {
    transform: scale(0.95);
  }

  .cupom-form {
    display: flex;
    flex-direction: column; /* Empilhamento em dispositivos móveis */
    align-items: stretch; /* Elementos ocupam toda a largura */
    gap: 10px; /* Espaçamento entre input e botão */
  }

  /* Responsividade */
  @media (min-width: 768px) {
    .cupom-form {
      flex-direction: row; /* Alinha elementos na horizontal em telas maiores */
      align-items: center;
    }

    .action-btn.resgate-btn {
      margin-left: 10px;
    }
  }

  @media (max-width: 480px) {
    .input-group-text {
      font-size: 14px; /* Reduz o tamanho do texto em telas muito pequenas */
      padding: 6px 10px;
    }

    .action-btn.resgate-btn {
      font-size: 12px; /* Botão menor em dispositivos móveis */
      padding: 6px 12px;
    }

  }
  
/* Rect Account */
.rect-account {
position: relative;
width: 100%;
max-width: 500px;
justify-content: center;
align-items: center;
margin: 20px auto;
border: 2px solid transparent;
border-radius: 12px;
background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(255, 0, 0, 0.6));
display: none;
padding: 15px;
overflow-wrap: break-word;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.rect-account.success {
border-color: #00cc66;
background: linear-gradient(135deg, rgba(0, 255, 0, 0.3), rgba(0, 200, 0, 0.5));
}

.rect-account.failed {
border-color: #ff3333;
background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(200, 0, 0, 0.6));
}

.rect-account-text {
text-align: left;
font-size: 16px;
font-weight: 600;
color: #fff;
letter-spacing: 0.5px;
}

