/* Estilos para os modais e botões */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.payment-modal-content {
    position: relative;
    background: linear-gradient(145deg, #1a1f2e, #0F172A);
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    color: #fff;
    font-size: 24px;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.payment-option {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-option:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.payment-option.selected {
    border-color: var(--primary, #FF6B00);
    background: rgba(255, 107, 0, 0.1);
}

.payment-icon {
    font-size: 40px;
    color: var(--primary, #FF6B00);
    margin-bottom: 15px;
}

.payment-option h3 {
    color: #fff;
    margin: 0 0 10px;
}

.payment-option p {
    color: #94A3B8;
    margin: 0 0 20px;
}

.payment-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
}

.payment-benefits li {
    color: #94A3B8;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.payment-benefits li i {
    color: var(--primary, #FF6B00);
    margin-right: 10px;
}

.payment-button {
    background: linear-gradient(135deg, var(--primary, #FF6B00), var(--primary-dark, #CC4400));
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.payment-button:hover {
    background: linear-gradient(135deg, var(--primary-light, #FF9248), var(--primary, #FF6B00));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.4);
}

.payment-security {
    text-align: center;
    color: #94A3B8;
    margin-top: 20px;
}

.payment-security i {
    margin-right: 8px;
    color: var(--success, #4CAF50);
}

.discord-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.discord-modal-content {
    position: relative;
    background: linear-gradient(145deg, #1a1f2e, #0F172A);
    margin: 15% auto;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease-out;
}

.discord-message {
    text-align: center;
    color: #fff;
    padding: 20px 0;
}

.discord-icon {
    font-size: 48px;
    color: #7289DA;
    margin-bottom: 20px;
}

.discord-button {
    display: inline-block;
    background: #7289DA;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.discord-button:hover {
    background: #677BC4;
    transform: translateY(-2px);
}

.trial-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.trial-modal-content {
    position: relative;
    background: linear-gradient(145deg, #1a1f2e, #0F172A);
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease-out;
}

.trial-steps {
    padding: 20px 0;
}

.trial-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.trial-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.step-number {
    background: linear-gradient(135deg, var(--primary, #FF6B00), var(--primary-dark, #CC4400));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    color: #fff;
}

.step-content h3 {
    margin: 0 0 10px;
    color: #fff;
}

.step-content p {
    margin: 0;
    color: #94A3B8;
}

.trial-discord-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #7289DA;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    margin: 30px auto 0;
    transition: all 0.3s ease;
    width: fit-content;
}

.trial-discord-button i {
    margin-right: 10px;
    font-size: 20px;
}

.trial-discord-button:hover {
    background: #677BC4;
    transform: translateY(-2px);
}

/* Estilo para o botão de teste grátis */
.trial-cta {
    background: linear-gradient(135deg, var(--primary, #FF6B00), var(--primary-dark, #CC4400));
    width: 100%;
    padding: 15px 25px;
    font-size: inherit;
}

.trial-cta:hover {
    background: linear-gradient(135deg, var(--primary-light, #FF9248), var(--primary, #FF6B00));
    transform: translateY(-3px);
}

/* Estilo para o botão de compra na seção de preço */
.price-column .price-cta {
    width: 100%;
    padding: 15px 25px;
    font-size: inherit;
}

/* Container para os botões */
.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

/* Estilos para o Modal do PIX */
.pix-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.pix-modal-content {
    position: relative;
    background: linear-gradient(145deg, #1a1f2e, #0F172A);
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease-out;
}

.pix-form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary, #FF6B00);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
}

.pix-qr-container {
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.qr-code-wrapper {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 20px;
}

.qr-code-wrapper img {
    width: 200px;
    height: 200px;
}

.pix-instructions {
    color: #94A3B8;
    margin-top: 15px;
}

.pix-instructions p {
    margin: 5px 0;
}

.payment-status {
    color: var(--success, #4CAF50);
    font-weight: 700;
    font-size: 18px;
    margin-top: 15px !important;
}

.payment-attention {
    background-color: #FFF7E6;
    border-left: 4px solid #FF9800;
    margin: 0 20px 20px;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    animation: attention-pulse 2s infinite;
}

.payment-attention i {
    color: #FF9800;
    font-size: 24px;
    margin-right: 15px;
}

.payment-attention p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #333;
}

.payment-attention strong {
    color: #FF5722;
}

@keyframes attention-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 152, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0);
    }
} 