body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    overflow-x: hidden;
    height: 100%;
    margin: 0;
    margin-top: 50px;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.navbar-brand, .navbar-nav .nav-link {
    color: #17FFE4;
}

.hero-section {
    box-shadow: 0 5px 0px 0 rgb(255 255 255), 0 8px 32px 0 rgb(0 0 0 / 38%);
    background: linear-gradient(rgba(23, 255, 228, 0.8), rgba(23, 255, 228, 0.8)), url('caminho-da-imagem-de-fundo.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 50px;
    font-weight: 700;
    animation: fadeInDown 1s ease-out;
}

.hero-section p {
    font-size: 20px;
    margin: 20px 0;
    animation: fadeInUp 1s ease-out;
}

.cta-button {
    background-color: #ffffff;
    color: #17FFE4;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    animation: pulse 2s infinite;
    box-shadow: 0 5px 0px 0 rgb(0, 203, 178), 0 8px 32px 0 rgb(0 0 0 / 38%);
}

.cta-button:hover {
    background-color: #17FFE4;
    color: #fff;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.card {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: none;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(123, 31, 162, 0.2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card-login {
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.form-control {
    border-radius: 25px;
    padding: 0px 20px;
}

.login-button {
    background-color: #17FFE4;
    color: white;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: #17FFE4;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #17FFE4;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 999;
    padding-top: 60px;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    margin: 20px 0;
    position: relative;
}

.mobile-menu ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.mobile-menu ul li.active a {
    background-color: #17FFE4;
    color: #fff;
    position: relative;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.mobile-menu ul li.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    right: 10px;
    height: 5px;
    background-color: #fff;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.3);
}

.mobile-menu ul li a:hover {
    background-color: #17FFE4;
}

.mobile-menu-toggle {
    color: #17FFE4;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    display: none; /* Inicialmente oculto */
}

.mobile-menu-open .mobile-menu {
    left: 0;
}

.profile-section {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
   box-shadow: 0 5px 0px 0 rgb(23, 255, 228), 0 8px 32px 0 rgb(0 0 0 / 38%);
    text-align: center;
    margin-top: -50px; /* Levanta um pouco a seção de perfil */
    z-index: 10;
    position: relative;	
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.profile-info h5 {
    font-size: 22px;
    font-weight: 700;
}

.profile-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}

.profile-info .badge {
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 20px;
    margin: 5px;
}

.profile-info .badge-coins {
    background-color: #ff9800;
    color: #fff;
}

.profile-info .badge-tokens {
    background-color: #9c27b0;
    color: #fff;
}

.footer {
    background-color: #ffffff;
    color: #000000;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;

}

.footer a {
    color: #17FFE4;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: block; /* Exibir no modo móvel */
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }
    .navbar-nav {
        display: flex; /* Exibir no modo desktop */
    }
}

  /* Estilos para o item de navegação "Sair" */
  .nav-item {
    margin: 0 10px; /* Espaço horizontal entre os itens do menu */
}

.nav-item .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff; /* Cor de fundo do card */
    border-radius: 10px; /* Borda arredondada */
    padding: 10px 20px; /* Espaçamento interno */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra */
    transition: box-shadow 0.3s ease, background-color 0.3s ease; /* Transição suave */
    color: #17FFE4; /* Cor do texto */
    font-weight: bold;
    text-decoration: none; /* Remove o sublinhado */
}

.nav-item .nav-link:hover {
    background-color: #17FFE4; /* Cor de fundo ao passar o mouse */
    color: #ffffff; /* Cor do texto ao passar o mouse */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Sombra mais intensa ao passar o mouse */
}

.nav-item .nav-link i {
    margin-right: 8px; /* Espaçamento entre o ícone e o texto */
}

/* Responsividade */
@media (max-width: 768px) {
    .navbar-nav {
        display: block; /* Exibe a navegação em bloco no modo móvel */
    }

    .nav-item {
        margin: 10px 0; /* Espaço vertical entre os itens do menu */
    }
}
/* Botões modernos e arredondados com ícones */
.btn-custom {
    background-color: #17FFE4; /* Cor de fundo */
    color: #ffffff; /* Cor do texto */
    padding: 12px 24px; /* Espaçamento interno */
    font-size: 16px; /* Tamanho da fonte */
    border-radius: 30px; /* Bordas arredondadas */
    border: none; /* Remove a borda padrão */
    text-decoration: none; /* Remove o sublinhado */
    display: flex; /* Flexbox para alinhar o texto e ícones */
    align-items: center; /* Alinha o texto verticalmente */
    justify-content: center; /* Alinha o texto horizontalmente */
    gap: 10px; /* Espaçamento entre ícone e texto */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Transições suaves */
}

.btn-custom:hover {
    background-color: #ABFFF1; /* Cor do fundo ao passar o mouse */
    transform: scale(1.05); /* Aumenta o tamanho do botão ao passar o mouse */
}

.btn-custom:active {
    background-color: #00C6A7; /* Cor do fundo quando o botão é clicado */
    transform: scale(1); /* Reduz o tamanho para o normal */
}

/* Alinhamento do ícone no botão */
.btn-custom i {
    font-size: 20px; /* Tamanho do ícone */
}
/* Estilos básicos para a seção de Como Funciona */
#como-funciona .card {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: none;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Espaçamento entre os cards */
#como-funciona .row {
    margin-left: -15px;
    margin-right: -15px;
}

#como-funciona .col-md-4 {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    #como-funciona .col-md-4 {
        margin-bottom: 20px; 
    }
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-top: 20px;
}

.login-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    padding: 20px;
    box-sizing: border-box;
    margin: auto;
}

.login-header {
    background-color: #17FFE4;
    color: #ffffff;
    padding: 15px;
    border-radius: 12px 12px 0 0;
    text-align: center;
}

.login-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.login-body {
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
}

.btn-submit {
    background-color: #17FFE4;
    color: #ffffff;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #ABFFF1;
}

.login-footer {
    margin-top: 20px;
    text-align: center;
}

.link {
    color: #17FFE4;
    text-decoration: none;
    font-weight: 500;
}

.link:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .login-card {
        padding: 15px;
    }

    .form-control {
        
        font-size: 14px;
    }

    .btn-submit {
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .login-card {
        width: 100%;
    }
}

.cadastrar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px; 
    margin-top: 20px;
}

.login-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    width: 100%;
    max-width: 500px; 
    padding: 20px;
    margin: 20px; 
}

.dropdown-menu {
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.content-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

h3 {
    font-size: 18px;
    margin-top: 20px;
}

p {
    font-size: 14px;
    line-height: 1.6;
}

.login-title {
    font-size: 24px;
    color: #fff;
}

.login-body {
    text-align: center;
}

#contagem {
    font-size: 20px;
    font-weight: bold;
    color: #ff5722;
}

.roleta-titulo {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: bold;
}

.card-section {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.info-row {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.info-row i {
    font-size: 1.5rem;
    color: #17FFE4;
    margin-right: 10px;
}

.info-row p {
    margin: 0;
    font-size: 1rem;
    color: #555;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5em;
    cursor: pointer;
}

@media (max-width: 768px) {
    .roletas-wrapper {
        flex-direction: column;
    }
}

.store-container {
    margin: 20px;
}

.store-header {
    background-color: #17FFE4;
    color: white;
    padding: 15px;
    border-radius: 8px 8px 0 0;
    text-align: center;
}

.store-body {
    padding: 20px;
}

.packages {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.package-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: calc(50% - 20px);
    box-sizing: border-box;
    margin-bottom: 20px;
    text-align: center;
    transition: transform 0.2s;
}

.package-card:hover {
    transform: scale(1.02);
}

.package-header h3 {
    margin: 0;
    font-size: 1.5em;
    color: #17FFE4;
}

.package-body {
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #ABFFF1;
}

@media (max-width: 768px) {
    .package-card {
        width: 100%;
    }
}

.login-container {
    margin: 0 auto;
    padding: 20px;
}

.login-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

#qrCodeContainer {
    margin-top: 20px;
}

#qrCode img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.copia-cola-container {
    margin-top: 15px;
    text-align: left;
}

.copia-cola-box {
    display: flex;
    align-items: center;
}

.copia-cola-box input {
    flex-grow: 1;
    padding: 5px;
    font-size: 14px;
}

.btn-copiar {
    margin-left: 10px;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    background-color: #4CAF50; /* Verde para feedback positivo */
    color: white;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-copiar:active {
    background-color: #45a049; /* Tom mais escuro ao clicar */
}

.saldo-container {
    margin-top: 15px;
    text-align: left;
}

.aguardando-pagamento {
    margin-top: 10px;
    font-weight: bold;
    color: #FF9800; /* Cor de destaque */
    display: flex;
    justify-content: center;
    align-items: center;
}

.aguardando-pagamento span {
    font-size: 1.5em; /* Tamanho maior do emoji */
    margin-left: 5px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes confirmationSuccess {
    0% {
        background-color: transparent;
        transform: scale(1);
    }
    50% {
        background-color: rgba(0, 255, 0, 0.3);
        transform: scale(1.05);
    }
    100% {
        background-color: rgba(0, 255, 0, 0.5);
        transform: scale(1);
    }
}

.success-confirmation {
    animation: confirmationSuccess 1s ease-in-out infinite;
    border-radius: 20px;
    border: 2px solid green; /* Borda verde para confirmação */
}

.valor-qrcode {
    margin-top: 5px;
    font-size: 18px;
    font-weight: bold;
}

#confirmationIcon {
    display: none; /* Inicialmente oculto */
    font-size: 80px; /* Tamanho do ícone */
    color: green; /* Cor verde para confirmação */
    animation: bounce 1s ease-in-out infinite; /* Animação */
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}
#statusPagamento.aprovado {
    color: green; /* Cor verde para confirmação */
    font-weight: bold;
}

#statusPagamento.aprovado span {
    font-size: 1.5em; /* Tamanho maior do emoji */
    color: green;
}


:root {
    --wheelWidth: 200px;
    --itemWidth: 67px;
    --clr-1: #49469D;
    --clr-2: #037AE0;
    --clr-3: #3EC2CF;
    --clr-4: #4AB969;
    --clr-5: #A6CE39;
    --clr-6: #FDBA4D;
    --clr-7: #F28322;
    --clr-8: #FF4D3B;
    --clr-9: #FF417B;
    --clr-10: #B12C88;
    --clr-text: #303238;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.containerr {
    max-width: 1440px;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Permite empilhamento no modo celular */
    gap: 40px; /* Aumenta o espaçamento entre as roletas */
    padding: 20px;
}

.wheel {
    position: relative;
}

.wheel-inner {
    width: var(--wheelWidth);
    height: var(--wheelWidth);
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    outline: solid 10px #17FFE4;
    box-shadow: 0 29px 50px rgb(0 0, 0 / 0.3);
    transform-origin: center;
}

.wheel-inner::before {
    content: "";
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1) 100%);
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    mix-blend-mode: multiply;
}

.wheel-item {
    width: var(--itemWidth);
    height: var(--wheelWidth);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: absolute;
    clip-path: polygon(96% 0, 50% 48%, 4% 0);
}

.wheel-item.one {
    left: calc(50% - (var(--itemWidth) / 2));
    background: var(--clr-1);
    transform: rotate(calc(36deg * 0));
}

.wheel-item.two {
    left: calc(50% - (var(--itemWidth) / 2));
    background: var(--clr-2);
    transform: rotate(calc(36deg * 1));
}

.wheel-item.three {
    left: calc(50% - (var(--itemWidth) / 2));
    background: var(--clr-3);
    transform: rotate(calc(36deg * 2));
}

.wheel-item.four {
    left: calc(50% - (var(--itemWidth) / 2));
    background: var(--clr-4);
    transform: rotate(calc(36deg * 3));
}

.wheel-item.five {
    left: calc(50% - (var(--itemWidth) / 2));
    background: var(--clr-5);
    transform: rotate(calc(36deg * 4));
}

.wheel-item.six {
    left: calc(50% - (var(--itemWidth) / 2));
    background: var(--clr-6);
    transform: rotate(calc(36deg * 5));
}

.wheel-item.seven {
    left: calc(50% - (var(--itemWidth) / 2));
    background: var(--clr-7);
    transform: rotate(calc(36deg * 6));
}

.wheel-item.eight {
    left: calc(50% - (var(--itemWidth) / 2));
    background: var(--clr-8);
    transform: rotate(calc(36deg * 7));
}

.wheel-item.nine {
    left: calc(50% - (var(--itemWidth) / 2));
    background: var(--clr-9);
    transform: rotate(calc(36deg * 8));
}

.wheel-item.ten {
    left: calc(50% - (var(--itemWidth) / 2));
    background: var(--clr-10);
    transform: rotate(calc(36deg * 9));
}

.wheel-item .text {
    transform: rotate(-90deg) translateX(-100%);
    color: #fff;
    max-width: 40%;
    position: relative;
    z-index: 200;
}

.spin {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 0;
    font-size: 1em;
    font-weight: bold;
    background-color: #17FFE4;
    box-shadow: 0 10px 15px rgb(0 0 0 / 0.25);
    color: #ffffff;
    transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s transform;
    cursor: pointer;
}

.spin:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.marker {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 25px solid #fff;
    position: absolute;
    top: calc(-10px);
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    z-index: 200;
    box-shadow: 0 10px 15px rgb(0 0 0 / 0.1);
}
/* Estilo geral do pop-up */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: none;
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    max-width: 90%; /* Limita a largura máxima */
    box-sizing: border-box;
}

.popup.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Estilo do título */
.popup h2 {
    margin-bottom: 20px;
    font-size: 1.5em;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
}

/* Estilo do formulário */
.popup form {
    margin-top: 10px;
}

/* Estilo do campo de entrada */
.popup input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.popup input[type="text"]:focus {
    border-color: var(--clr-2);
    outline: none;
}

/* Estilo do botão */
.popup button {
    background-color: var(--clr-2); /* Substitua por sua cor principal */
    color: #fff;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 15px;
}

.popup button:hover {
    background-color: darken(var(--clr-2), 10%); /* Ajuste conforme necessário */
    transform: translateY(-2px);
}

.popup button:active {
    background-color: darken(var(--clr-2), 20%); /* Ajuste conforme necessário */
    transform: translateY(1px);
}

/* Estilo da nota */
.popup .note {
    margin-top: 15px;
    font-size: 0.9em;
    color: #666;
}

/* Responsividade */
@media (max-width: 600px) {
    .popup {
        padding: 15px;
        max-width: 95%; /* Ajusta a largura máxima para telas menores */
    }

    .popup h2 {
        font-size: 1.2em;
    }

    .popup input[type="text"] {
        padding: 10px;
        font-size: 0.9em;
    }

    .popup button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}


@media (max-width: 768px) {
    .containerr {
        flex-direction: column;
        gap: 30px; /* Reduz o espaçamento para dispositivos móveis */
    }
}


.spin1 {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 0;
    font-size: 1em;
    font-weight: bold;
    background-color: #17FFE4;
    box-shadow: 0 10px 15px rgb(0 0 0 / 0.25);
    color: #ffffff;
    transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s transform;
    cursor: pointer;
}



/* Container da roleta e título */
.wheel-container {
    text-align: center;
    margin-bottom: 30px; /* Espaçamento entre as roletas */
}

.wheel-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px; /* Espaçamento entre o título e a roleta */
}

.package-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.package-body {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.original-price {
    color: #6c757d;
    font-size: 16px;
    text-decoration: line-through;
}

.discount {
    color: #28a745;
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0;
}

.final-price {
    color: #dc3545;
    font-size: 20px;
    font-weight: bold;
}

.promo-banner {
    background-color: #17FFE4;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: block;
}
.promo-banner a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #fff;
    color: #17FFE4;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}
.promo-banner a:hover {
    background-color: #f1f1f1;
}

