  body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100vw;
    height: fit-content;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background-color: var(--cor1);
  }

  nav {
    padding: 20px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 6vh;
    background: rgba(15, 45, 25, 0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 44, 0.25);
    box-shadow: 0 8px 32px 0 rgba(15, 45, 25, 0.35);
    color: var(--cor2);
    font-weight: 600;
    font-size: 1vw;
    z-index: 2;
    animation: slideDown 1s ease;
  }

  .logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .logos img {
    width: 10vw;
  }

  .nav-mobile {
    display: none;
  }

  nav img {
    width: 180px;
    height: auto;
  }

  nav a,
  footer a {
    text-decoration: none;
    color: var(--cor2);
  }

  #ola-perfil {
    text-align: center;
  }

  .links {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }

  nav a {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
    padding: 0 10px;
  }

  nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--cor5);
    transition: width 0.3s ease;
  }

  nav a:hover::after {
    width: 100%;
  }

  nav a.link-nota::after {
    display: none;
  }

  nav a:hover {
    color: var(--cor2);
    font-weight: 700;
  }

  /* Botão CTA de login no nav */
  #btn-login {
    background: var(--gold-gradient);
    color: #1C5233 !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    height: auto;
    font-size: 0.9vw;
    box-shadow: none;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.35);
  }

  #btn-login::after {
    display: none;
  }

  #btn-login:hover {
    background: var(--gold-gradient-hover);
    box-shadow: none;
    transform: translateY(-3px);
    color: #1C5233 !important;
  }

  .container-banner {
    display: flex;
    align-items: start;
    justify-content: end;
    width: 100vw;
    height: 100vh;
    position: relative;
    background: url('../img/banner_desktop.png') no-repeat center center;
    background-size: cover;
  }

  #lista-produtos {
    width: 100%;
    padding: 0 5px;
    max-height: 80%;
    overflow: auto;
    font-size: 20px;
  }

  .container-banner.faq {
    height: fit-content;
    background: var(--cor1);
    align-items: center;
    justify-content: center;
  }

  .btn-principal {
    all: unset;
    cursor: pointer;
    width: 30%;
    font-size: 1.3vw;
    text-align: center;
    background: var(--gold-gradient);
    padding: 20px 60px;
    color: #1C5233;
    transition: all 0.4s ease;
    font-weight: 700;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;
    position: relative;
    overflow: hidden;
  }

  .btn-principal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.5s ease;
  }

  .btn-principal:hover::before {
    left: 100%;
  }

  .btn-principal:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: none;
  }

  #btn-vendedores {
    background-color: var(--cor2);
  }

  #container1 {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 90%;
  }

  #child1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: auto;
    padding: 20px;
    gap: 10px;
    animation: scaleIn 1s ease;
  }

  #child1 h1 {
    font-size: 2vw;
    margin-bottom: 2vw;
    text-align: center;
  }

  #child1 h1,
  #child1 h2 {
    color: var(--cor4);
  }

  img {
    user-select: none;
  }

  #btn-participe {
    all: unset;
    background: var(--gold-gradient);
    padding: 20px 20%;
    color: #1C5233;
    margin-top: 10%;
    cursor: pointer;
    transition: ease 0.3s;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: none;
  }

  #btn-participe:hover {
    background: var(--gold-gradient-hover);
    box-shadow: none;
    transform: translateY(-3px);
  }

  #child2 img {
    width: 100%;
    z-index: 2;
  }

  #child2 {
    position: relative;
  }

  #child2::before {
    content: '';
    display: flex;
    position: absolute;
    width: 88%;
    height: 75%;
    background-color: var(--cor4);
    z-index: 1;
  }

  #bottom-style1 {
    width: 100%;
    height: fit-content;
    position: absolute;
    bottom: -10vw;
    z-index: 1;
  }

  #bottom-style2 {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: -3%;
    z-index: 1;
  }

  #bottom-style2 img {
    width: 100%;
    height: auto;
  }

  /* Container geral do FAQ */
  .faq-section {
    padding: 2rem 1rem;
    width: 60%;
  }

  /* Título "Dúvidas Frequentes" */
  .faq-section h2 {
    color: var(--cor4);
    font-size: 3vw;
    text-align: center;
    margin-bottom: 2rem;
  }

  /* Lista de perguntas */
  .faq-list {
    width: 80%;
    margin: 0 auto;
    margin-top: 10%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .faq-list> :nth-last-child(1) {
    border-bottom: none;
  }

  .faq-question {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
  }

  .faq-question h3 {
    max-width: 80%;
  }

  .faq-question span {
    position: absolute;
    font-size: 2.5vw;
    right: 0;
    cursor: pointer;
    user-select: none;
  }

  .faq-question span.rotate {
    transform: rotate(180deg);
  }

  /* Bloco individual de pergunta/resposta */
  .faq-box {
    padding: 2vw;
    text-align: center;
    background: rgba(28, 82, 51, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 44, 0.2);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    height: fit-content;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .faq-box:hover {
    background: rgba(28, 82, 51, 0.55);
    transform: translateY(-5px);
    box-shadow: none;
    border-color: rgba(212, 175, 44, 0.4);
  }

  /* Pergunta */
  .faq-box h3 {
    color: var(--cor4);
    font-size: 1.5vw;
    margin: 0;
  }

  /* Resposta */
  .faq-box p {
    margin-top: 1vw;
    font-size: 1rem;
    color: white;
    line-height: 1.5;
  }

  .faq-answer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 60%;
  }

  .faq-answer li {
    text-align: start;
  }

  #bottom-style1 img {
    width: 100%;
    height: auto;
  }

  section {
    color: var(--cor2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: fit-content;
  }

  section h1 {
    text-align: center;
    font-size: 80px;
    margin: 5px;
  }

  #logo-section {
    width: 400px;
  }

  footer {
    background-color: var(--cor1);
    color: var(--cor2);
    border-top: 2px solid rgba(212, 175, 44, 0.3);
  }

  footer p {
    margin-left: 20px;
    text-align: center;
  }

  footer a {
    color: var(--cor4) !important;
  }

  footer a:hover {
    color: #F2CC30 !important;
  }

  footer .footer-regulamento {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    padding: 10px 20px 0;
    margin-left: 0;
  }

  /* Cookie Popup Styles */
  .cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 25px;
    color: white;
    flex-wrap: wrap;
  }

  .cookie-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    animation: cookieBounce 2s ease-in-out infinite;
  }

  @keyframes cookieBounce {

    0%,
    100% {
      transform: translateY(0) rotate(0deg);
    }

    25% {
      transform: translateY(-5px) rotate(-5deg);
    }

    50% {
      transform: translateY(0) rotate(0deg);
    }

    75% {
      transform: translateY(-5px) rotate(5deg);
    }
  }

  .cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    min-width: 200px;
  }

  .cookie-btn {
    background: var(--gold-gradient);
    color: #1C5233;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 12px 30px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    flex-shrink: 0;
  }

  .cookie-btn:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: none;
  }

  .cookie-btn:active {
    transform: translateY(0);
  }

  @media (max-width: 768px) {
    .cookie-content {
      flex-direction: column;
      text-align: center;
      gap: 15px;
      padding: 20px;
    }

    .cookie-text {
      min-width: auto;
    }

    .cookie-btn {
      width: 100%;
    }
  }

  /* Toastify customization */
  .toastify {
    font-family: "Plus Jakarta Sans", sans-serif !important;
  }

  .toastify-right {
    right: 20px;
  }

  .toastify-top {
    top: 80px;
  }

  @media (max-width: 768px) {
    .toastify-right {
      right: 10px;
      left: 10px;
    }
  }

  form {
    display: none;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    padding: 3vw;
    background: rgba(12, 38, 22, 0.88);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(212, 175, 44, 0.22);
    border-radius: 8px;
    box-shadow: 0 8px 32px 0 rgba(15, 45, 25, 0.5);
    width: fit-content;
    animation: scaleIn 0.5s ease;
  }

  form h1 {
    font-size: 1.5vw;
    padding: 0;
    margin: 0;
    color: var(--cor4);
  }

  .container {
    display: flex;
    flex-direction: column;
    width: 90%;
    gap: 10px;
  }

  .container input,
  select {
    border: 1px solid rgba(212, 175, 44, 0.25);
    padding: 0.7vw;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 4px;
    color: white;
    transition: all 0.3s ease;
  }

  .container input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }

  .container select {
    color: white;
  }

  .container select option {
    background: #1C5233;
    color: white;
  }

  .container input:focus,
  select:focus {
    outline: none;
    border: 1px solid rgba(212, 175, 44, 0.6);
    background: rgba(212, 175, 44, 0.08);
    box-shadow: none;
    transform: translateY(-2px);
  }

  form button[type="submit"] {
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: var(--gold-gradient);
    color: #1C5233;
    padding: 0.9vw 1vw;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: none;
  }

  form button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
  }

  form button[type="submit"]:hover::before {
    width: 300px;
    height: 300px;
  }

  form button[type="submit"]:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-3px);
    box-shadow: none;
  }

  #btn-excluir {
    background: linear-gradient(135deg, #ff1744 0%, #f50057 100%);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 23, 68, 0.4);
  }

  #btn-excluir:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff4081 100%);
    box-shadow: 0 6px 20px rgba(255, 23, 68, 0.6);
    transform: translateY(-2px);
  }

  form button[type="submit"]:disabled,
  input:disabled,
  input:read-only {
    opacity: 0.5;
    cursor: auto;
  }

  #input-qrcode,
  #input-nota {
    opacity: 1;
  }

  form button[type="submit"]:disabled:hover {
    box-shadow: none;
  }

  form a {
    color: var(--cor4);
  }

  form a:hover {
    color: #F2CC30;
  }

  #form-nota .container,
  #form-cadastro .container {
    display: grid;
    grid-template-columns: 100%;
    width: 25vw;
    max-height: 50vh;
    overflow-y: auto;
    padding: 10px;
  }

  #form-nota img {
    width: 100%;
  }

  #form-nota .container div,
  #form-cadastro .container,
  #form-conta .container div,
  #form-cadastro .container div {
    display: flex;
    flex-direction: column;
  }

  #reader {
    display: none !important;
  }

  #form-nota .container #campos-extras-nota {
    display: grid;
    grid-template-columns: 100%;
    gap: 10px;
  }

  #form-nota .container #campos-extras-nota.hidden {
    display: none;
  }

  #form-nota p {
    text-align: center;
  }

  #form-numeros,
  #form-ganhadores {
    gap: 0;
  }

  #form-numeros .container,
  #form-ganhadores .container {
    width: 20vw;
    max-height: 60vh;
    overflow-y: auto;
  }

  #tr-numeros td {
    margin: 4px;
  }

  #form-ganhadores .container {
    width: fit-content;
  }

  #form-notas .container {
    width: fit-content;
    max-height: 60vh;
    overflow-y: auto;
  }

  #h1-numeros,
  #h1-notas {
    margin: 15px;
  }

  table {
    width: 100%;
    height: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 18px;
    font-family: "Arial", sans-serif;
    text-align: center;
    overflow: hidden;
    border-radius: 6px;
    background: rgba(10, 35, 18, 0.4);
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    box-shadow: 0 10px 40px 0 rgba(15, 45, 25, 0.5),
      0 0 0 1px rgba(212, 175, 44, 0.15) inset;
  }

  #form-numeros table td {
    display: flex;
    flex-direction: column;
  }

  table th {
    font-size: 1.2vw;
    background: linear-gradient(135deg, rgba(12, 50, 28, 0.97) 0%, rgba(28, 82, 51, 0.97) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--cor4);
    padding: 16px 20px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1vw;
  }

  table th:first-child {
    border-radius: 6px 0 0 0;
  }

  table th:last-child {
    border-radius: 0 6px 0 0;
  }

  #form-senha {
    transition: all ease 1s;
  }

  .container-codigo,
  .container-senha {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: slideRight 0.5s linear;
  }

  .container-codigo.closed,
  .container-senha.closed {
    display: none;
  }

  table td {
    border: none;
    border-bottom: 1px solid rgba(212, 175, 44, 0.08);
    font-size: 0.95vw;
    padding: 18px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
  }

  table tbody tr {
    background: rgba(28, 82, 51, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  table tbody tr:nth-child(even) {
    background: rgba(28, 82, 51, 0.28);
  }

  table tbody tr:hover {
    background: rgba(35, 100, 65, 0.45);
    transform: translateX(5px);
    box-shadow: none;
  }

  table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 6px;
  }

  table tbody tr:last-child td:last-child {
    border-radius: 0 0 6px 0;
  }

  #form-regulamento {
    overflow-y: auto;
    width: fit-content;
  }

  #form-regulamento .container {
    width: 50vw;
    height: 80vh;
  }

  #form-regulamento embed {
    width: 100%;
    height: 100%;
  }

  .overlay-aceite,
  .overlay-loja {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .overlay-aceite.hidden,
  .overlay-loja.hidden {
    display: none;
  }

  #form-aceite,
  #form-loja {
    display: flex;
    flex-direction: column;
    background: rgba(12, 38, 22, 0.92);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(212, 175, 44, 0.22);
    border-radius: 8px;
    box-shadow: 0 8px 32px 0 rgba(15, 45, 25, 0.5);
    gap: 1.5rem;
    padding: 2rem;
    min-width: 350px;
    max-width: 500px;
    animation: scaleIn 0.3s ease;
  }

  #form-aceite p,
  #form-loja p {
    font-size: 1.1rem;
    text-align: center;
    color: white;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
  }

  #form-aceite .container,
  #form-loja .container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    width: 100%;
  }

  #form-aceite button,
  #form-loja button {
    flex: 1;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  #btn-sim,
  #btn-sim-loja {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
  }

  #btn-sim:hover,
  #btn-sim-loja:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6);
  }

  #btn-nao,
  #btn-nao-loja {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
  }

  #btn-nao:hover,
  #btn-nao-loja:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
  }

  #form-ganhadores table {
    box-shadow: none;
    border-radius: 0;
  }

  #form-ganhadores table th {
    box-shadow: none;
    border: 1px solid rgba(212, 175, 44, 0.3);
  }

  input[type="file"] {
    font-size: 14px;
    color: #999;
    background-color: white;
    padding: 15px;
    cursor: pointer;
    transition: ease 0.5s;
  }

  input[type="file"]:hover {
    box-shadow: 5px 10px 5px rgba(0, 0, 0, 0.183);
  }

  input[type="file"]::file-selector-button {
    all: unset;
    background: var(--gold-gradient);
    color: #1C5233;
    padding: 10px;
    margin-right: 5px;
    border-radius: 3px;
    font-weight: 600;
  }

  input[type="file"].selecionado {
    cursor: auto;
    box-shadow: none;
  }

  input[type="file"].selecionado::file-selector-button {
    display: none;
  }

  .link-perfil {
    display: flex;
    justify-content: center;
    width: fit-content;
    /* height: 100%; */
  }

  .link-nota {
    background: var(--gold-gradient);
    color: #1C5233;
    height: auto;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
    box-shadow: none;
  }

  .link-nota:hover {
    background: var(--gold-gradient-hover);
    color: #1C5233;
    transform: translateY(-2px);
    box-shadow: none;
  }

  .icones-perfil {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 4px 16px;
    cursor: pointer;
    z-index: 1;
    background: rgba(212, 175, 44, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 44, 0.25);
    border-radius: 5px;
    width: fit-content;
    height: fit-content;
    transition: all 0.3s ease;
  }

  .icones-perfil:hover {
    background: rgba(212, 175, 44, 0.2);
    border-color: rgba(212, 175, 44, 0.45);
    transform: translateY(-2px);
    box-shadow: none;
  }

  #icone-perfil {
    font-size: 1.8rem;
    user-select: none;
  }

  #ola-perfil {
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
  }

  #icone-seta {
    font-size: 1.5rem;
    transform: rotate(0deg);
    user-select: none;
    transition: transform 0.3s ease;
  }

  #icone-seta.rotate {
    transform: rotate(180deg);
  }

  .menu-conta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 90%;
    width: fit-content;
    padding: 20px;
    background: rgba(10, 35, 20, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(212, 175, 44, 0.2);
    border-radius: 6px;
    box-shadow: 0 8px 32px 0 rgba(15, 45, 25, 0.5);
    gap: 2px;
    z-index: 3;
    animation: slideDown 1s ease;
  }

  .menu-conta a {
    padding: 15px;
    width: 90%;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .menu-conta a:hover {
    border-bottom: none;
    color: var(--cor4);
    background: rgba(212, 175, 44, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateX(5px);
    box-shadow: none;
  }

  .menu-conta a:last-child:hover {
    background-color: rgba(139, 26, 26, 0.5);
    color: white;
  }

  #form-produtos>.container {
    max-height: 90vh;
  }

  #form-produtos>.container h1 {
    color: var(--cor4);
  }

  .lista-sugestoes {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 85%;
    max-height: 29%;
    overflow-y: auto;
    background-color: #1C5233;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    top: 85%;
    border-radius: 0 0 4px 4px;
    border: 1px solid rgba(212, 175, 44, 0.2);
  }

  #ilustrativas {
    position: absolute;
    bottom: 3%;
    max-width: 300px;
    text-align: center;
    font-size: 10px;
    right: 2%;
  }

  .lista-sugestoes li {
    padding: 10px 15px;
    cursor: pointer;
    color: var(--cor2);
    transition: background-color 0.2s ease, transform 0.1s ease;
  }

  .lista-sugestoes li:hover {
    background: var(--gold-gradient);
    color: #1C5233;
    font-weight: 600;
  }

  .lista-sugestoes::-webkit-scrollbar {
    width: 8px;
    background-color: #1C5233;
  }

  .lista-sugestoes::-webkit-scrollbar-thumb {
    background-color: var(--cor4);
    border-radius: 4px;
  }

  .lista-sugestoes::-webkit-scrollbar-track {
    background-color: #1C5233;
  }

  .hidden {
    display: none;
  }

  /* Checkbox de comunicação estilizado */
  .checkbox-comunicacao {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 15px;
    background: rgba(212, 175, 44, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 44, 0.2);
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .checkbox-comunicacao:hover {
    background: rgba(212, 175, 44, 0.1);
    border-color: rgba(212, 175, 44, 0.35);
    transform: translateY(-2px);
    box-shadow: none;
  }

  .checkbox-comunicacao input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(212, 175, 44, 0.5);
    border-radius: 3px;
    background: rgba(212, 175, 44, 0.08);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .checkbox-comunicacao input[type="checkbox"]:hover {
    border-color: rgba(212, 175, 44, 0.8);
    background: rgba(212, 175, 44, 0.15);
  }

  .checkbox-comunicacao input[type="checkbox"]:checked {
    background: var(--gold-gradient);
    border-color: #D4AF2C;
  }

  .checkbox-comunicacao input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1C5233;
    font-size: 16px;
    font-weight: bold;
  }

  .checkbox-comunicacao label {
    cursor: pointer;
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    user-select: none;
    flex: 1;
  }

  @media screen and (max-width: 768px) {

    table {
      border: none !important;
    }

    #ilustrativas {
      display: none;
    }

    body,
    html {
      max-width: 100vw;
      overflow-x: hidden;
      background-color: var(--cor1);
    }

    .links.mobile a {
      text-align: center;
    }

    .nav-desktop {
      display: none;
    }

    .logos img {
      width: 120px;
    }

    .nav-mobile {
      box-sizing: border-box;
      display: flex;
      padding: 10px 8px;
      height: 11vh;
      width: 100%;
      justify-content: space-between;
      z-index: 10;
      background: rgba(10, 35, 20, 0.92);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid rgba(212, 175, 44, 0.25);
      box-shadow: 0 8px 32px 0 rgba(15, 45, 25, 0.3);
    }

    .link-nota.nav-m {
      font-size: 15px;
      background: var(--gold-gradient);
      color: #1C5233;
      border: none;
      border-radius: 5px;
      padding: 8px 15px;
      font-weight: 700;
    }

    section {
      background-size: cover;
      height: fit-content;
    }

    .container-banner {
      background: url('../img/banner_mobile.png') no-repeat center center;
      background-size: cover;
      height: 100vh;
      margin-top: 0;
      align-items: center;
    }

    .links.closed {
      display: none;
    }

    #logo-nav {
      width: 100px;
    }

    .container-banner.produtos #child1 {
      height: 20vh;
    }

    #link-burger {
      color: var(--cor4);
      font-size: 30px;
      padding: 8px;
      background: rgba(212, 175, 44, 0.12);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 5px;
      border: 1px solid rgba(212, 175, 44, 0.25);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    #link-burger:hover {
      background: rgba(212, 175, 44, 0.22);
      transform: scale(1.1);
      box-shadow: none;
    }

    .links {
      position: absolute;
      flex-direction: column;
      gap: 8px;
      top: 100%;
      right: 0;
      padding: 15px;
      width: 50%;
      max-height: 90vh;
      height: fit-content;
      background: rgba(10, 35, 20, 0.95);
      backdrop-filter: blur(25px) saturate(180%);
      -webkit-backdrop-filter: blur(25px) saturate(180%);
      border: 1px solid rgba(212, 175, 44, 0.2);
      border-top: 0;
      border-radius: 0 0 0 6px;
      box-shadow: -5px 8px 32px 0 rgba(15, 45, 25, 0.5);
      animation: slideRight 0.5s ease;
    }

    .links a {
      height: 60px;
      border-bottom: none;
      width: 90%;
      align-items: center;
      justify-content: center;
      padding: 5px;
      font-size: 18px;
      color: var(--cor2);
      background: rgba(28, 82, 51, 0.25);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 4px;
      border: 1px solid rgba(212, 175, 44, 0.12);
      transition: all 0.3s ease;
    }

    .links a:hover {
      background: rgba(28, 82, 51, 0.55);
      transform: translateX(-5px);
      box-shadow: none;
      color: var(--cor4);
    }

    .links a:last-child {
      border-bottom: none;
    }

    #h1-numeros,
    #h1-notas {
      font-size: 25px;
    }

    #btn-login {
      border: none;
      font-size: 14px;
    }

    .links.mobile #btn-login {
      width: 100%;
      text-align: center;
      padding: 0;
      height: 60px;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      box-shadow: none;
      transform: none;
    }

    #logo-section {
      width: 90vw;
    }

    #container1 {
      width: 100%;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: fit-content;
      margin: 0;
      margin-bottom: 10%;
    }

    #child1 {
      width: 100%;
    }

    #child1 h1 {
      font-size: 20px;
    }

    .btn-principal {
      width: 50%;
      font-size: 15px;
      padding: 15px 40px;
    }

    form {
      position: fixed;
      gap: 2vw;
      padding: 12vw 4vw;
      width: 90%;
      height: fit-content;
      max-width: 90vw;
      min-height: fit-content;
      max-height: 90vh;
      overflow-y: auto;
    }

    .container {
      width: 100%;
      gap: 5px;
    }

    .container input {
      padding: 2.5vw;
    }

    button[type="submit"] {
      padding: 4vw 5vw;
    }

    #form-nota .container,
    #form-cadastro .container,
    #form-conta .container {
      width: 90vw;
    }

    #form-nota .container {
      grid-template-columns: 100%;
    }

    form button[type="submit"] {
      width: 100%;
      padding: 15px;
    }

    #form-cadastro .container {
      grid-template-columns: 1fr;
      overflow: auto !important;
      max-height: 60vh;
    }

    #form-numeros .container {
      width: 80vw;
    }

    #form-notas .container {
      width: 90vw;
    }

    #form-ganhadores,
    #form-numeros,
    #form-notas {
      padding: 55px 20px 20px;
    }

    /* Cards mobile para tabelas de notas e ganhadores */
    #form-notas thead,
    #form-ganhadores thead {
      display: none;
    }

    #form-notas tbody tr,
    #form-ganhadores tbody tr {
      display: flex;
      flex-direction: column;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      padding: 12px 14px;
      margin-bottom: 10px;
      border: 1px solid rgba(212, 175, 44, 0.2);
    }

    #form-notas tbody td,
    #form-ganhadores tbody td {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      padding: 5px 0;
      border: none;
    }

    #form-notas tbody td::before,
    #form-ganhadores tbody td::before {
      content: attr(data-label);
      color: var(--cor4);
      font-weight: bold;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-right: 8px;
      white-space: nowrap;
    }

    /* Chips para números da sorte */
    #form-numeros #tr-numeros {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    #form-numeros #tr-numeros td {
      background: rgba(212, 175, 44, 0.15);
      border: 1px solid rgba(212, 175, 44, 0.35);
      border-radius: 6px;
      padding: 8px 14px;
      font-size: 13px;
      color: #fff;
      width: 80px;

    }

    table th {
      font-size: 14px;
    }

    table td {
      font-size: 14px;
    }

    section h1 {
      font-size: 8vw;
    }

    #form-ganhadores .container {
      width: 80vw;
    }

    #form-regulamento .container {
      width: 90vw;
      height: 80vh;
    }

    footer {
      font-size: 12px;
    }

    .faq-question span {
      font-size: 40px;
    }

    .faq-section {
      width: 90%;
    }

    .faq-section h2 {
      font-size: 30px;
    }

    .faq-box h3 {
      font-size: 22px;
    }

    .lista-sugestoes {
      max-height: 19%;
    }
  }