/* Estilos para os modais e botões */

/*
  NOTA: Para que estas classes base funcionem, adicione a classe 'modal'
  aos elementos principais do modal no HTML (junto com .payment-modal, .discord-modal, .trial-modal)
  e a classe 'modal-content' aos containers de conteúdo interno
  (junto com .payment-modal-content, .discord-modal-content, .trial-modal-content).

  Exemplo:
  <div class="modal payment-modal" id="paymentModal">
    <div class="modal-content payment-modal-content">
      ...
    </div>
  </div>
*/

.modal {
    display: none; /* Hidden by default */
    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);
}

.modal-content {
    position: relative;
    background: linear-gradient(145deg, #1a1f2e, #0F172A);
    margin: 5% auto; /* Default margin, can be overridden */
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease-out;
    width: 90%; /* Default width, can be overridden */
}

.payment-modal {
    /* Specific styles for payment modal if any */
}

.payment-modal-content {
    max-width: 800px;
}

.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: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

.payment-icon {
    font-size: 40px;
    color: #4CAF50;
    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: #4CAF50;
    margin-right: 10px;
}

.payment-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.payment-button:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.payment-security {
    text-align: center;
    color: #94A3B8;
    margin-top: 20px;
}

.payment-security i {
    margin-right: 8px;
    color: #4CAF50;
}

.discord-modal {
    /* Specific styles for discord modal if any */
}

.discord-modal-content {
    margin: 15% auto;
    max-width: 500px;
}

.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 {
    /* Specific styles for trial modal if any */
}

.trial-modal-content {
    max-width: 600px;
}

.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: #4CAF50;
    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;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 