/* Adicionando variáveis de cor no topo para fácil customização */
:root {
    --cor-acento-principal: #5C6BC0; /* Azul/Roxo da página anterior */
    --cor-acento-claro: #7986CB;   /* Tom mais claro para efeito hover */
    --cor-acento-sombra: rgba(92, 107, 192, 0.5); /* Sombra correspondente */
    --borda-gradiente: linear-gradient(to right, #5C6BC0, #8E99F3);
}


.titulo-principal {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 40px;
    text-shadow: 0 0 10px var(--cor-acento-principal); /* Alterado */
}

/* Container dos Planos */
.plan-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
}

.preco-sufixo {
    font-size: 1rem;
    font-weight: 400;
    color: #ccc;
}

.mensagem {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #ddd;
}

.mensagem strong {
    color: #fff;
}

.mensagem-negativo {
    color: #888;
    text-decoration: line-through;
    font-size: 0.95rem;
    margin-bottom: 12px;
}


/* Estilo do Modal do QR Code */
#qrCodeContainer {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    padding: 20px;
}

#qrCodeContent {
    background-color: #191c24;
    border-radius: 0.25rem;
    background-clip: border-box;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.125);/* Alterado */
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    width: 100%;
}

#qrCodeContent h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

#qrCodeImage {
    width: 250px;
    height: 250px;
    border-radius: 8px;
    margin-bottom: 15px;
}

#qrCodeContent p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 10px;
}

#copy-paste-area {
    background-color: #1c1c1c;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    word-wrap: break-word;
    font-size: 0.8rem;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.qr-buttons {
    display: flex;
    gap: 15px;
    width: 100%;
}


#close-modal {
    background: none;
    border: none;
    color: #888;
    margin-top: 20px;
    cursor: pointer;
    font-size: 0.9rem;
}

#close-modal:hover {
    color: #fff;
}

/* ===== NAV BAR DUS PRANO DAQUI PRA BAIXO ===== */
.navbar {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
}

.navbar .navbar-menu-wrapper {
  width: 100% !important;
  display: flex;
  align-items: center;
  padding-left: 10px;
  padding-right: 15px;
}

/* From Uiverse.io by andrew-demchenk0 */ 
.error {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  width: 90% !important;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  background: #EF665B;
  border-radius: 8px;
  box-shadow: 0px 0px 5px -3px #111;
}

.error__icon {
  width: 20px;
  height: 20px;
  transform: translateY(-2px);
  margin-right: 8px;
}

.error__icon path {
  fill: #fff;
}

.error__title {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}

.error__close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
}

.error__close path {
  fill: #fff;
}

/* BUTÃOZINHO DE VOLTAR MAIS PRA ESQUERDA PQ NO MEIO FICA FEIO */
.navbar .navbar-toggler.navbar-toggler-right {
  margin-right: auto;
  padding-left: 8px;
  padding-right: 8px;
  order: -1;
}

.main-panel {
  width: 100% !important;
  padding-top: 70px;
}

/* RESPONSIVIDADE MAIS BACANA PROS USER SEM GRANA PRA PC (USER DE SERULÁ) */
@media (max-width: 767px) {
  .navbar {
    left: 0 !important;
    width: 100% !important;
  }

  .navbar .navbar-menu-wrapper {
    padding-left: 5px;
    padding-right: 5px;
  }

  .content-wrapper {
    padding: 1rem 0.75rem;
  }

  .col-xl-3.col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .col-xl-3.col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
/* ===== FIM NAVBAR DUS PRANO ===== */