.btn-escolha {
    transition: all 0.3s ease-in-out;
}

.btn-escolha:hover {
    background-color: #0d6efd !important;
    color: #fff !important;
    border-color: #0d6efd !important;
    transform: scale(1.02);
}

.btn-escolha:hover .bi {
    color: #fff !important;
}

.btn-comprar {
    background: linear-gradient(45deg, #28a745, #218838);
    /* Gradiente suave de verde */
    color: white;
    font-size: 18px;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    /* Bordas arredondadas */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-comprar:hover {
    background-color: #218838;
    /* Alteração de cor no hover */
    transform: translateY(-3px);
    /* Efeito de elevação ao passar o mouse */
    cursor: pointer;
}

.btn-comprar:focus {
    outline: none;
    /* Remove o contorno padrão de foco */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    /* Sombras para foco */
}


/** FORM PAGAMENTOS**/
body {
    background-color: #0c1a26;
    color: #f1f1f1;
    font-family: 'Segoe UI', sans-serif;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ff5722;
}

.price-btn {
    font-size: 1.2rem;
    width: 100%;
    border-radius: 10px;
}

.module-btn {
    background-color: #ffc107;
    color: #000;
    font-weight: bold;
    border-radius: 0;
}

.course-box {
    background-color: #112233;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 15px #00000066;
}

.highlight-text {
    color: #ffe600;
    font-weight: bold;
}

.btn-buy-now {
    background-color: #ff5722;
    border: none;
}

.btn-buy-now:hover {
    background-color: #e64a19;
}

#pix-info {
    display: block;
}

#cartao-info {
    display: none;
}

.cartao {
    background-color: #f1f1f1;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
}

.cartao p {
    color: #000000;
}

.text-gradient {
    background: linear-gradient(90deg, #00c9ff, #92fe9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}