/* Estilos Gerais da Página de Preços */
body {
    background-color: #0a0a15; /* Fundo escuro consistente */
    color: var(--warm-off-white, #ffffff);
    font-family: var(--font-primary, "PP Neue Montreal", sans-serif);
}

#precos {
    padding: 80px 20px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.precos-header, .pricing-header {
    margin-bottom: 60px;
    text-align: center;
}

.precos-header h2, .pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary, #ffffff);
    margin-bottom: 10px;
}

.precos-header p, .pricing-header p {
    font-size: 1.1rem;
    color: var(--text-secondary, #cccccc);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Tabela de Preços (Grid) --- */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch; /* Garante que os cards tenham a mesma altura */
}

/* --- Estilo dos Cartões de Preço --- */
.pricing-card {
    background-color: rgba(30, 30, 45, 0.7);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-secondary, #cccccc);
    margin-bottom: 20px;
}

.card-price {
    margin-bottom: 10px;
}
.card-price .currency {
    font-size: 1.5rem;
    font-weight: 500;
    vertical-align: top;
    color: var(--text-secondary, #cccccc);
}

.card-price .value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary, #ffffff);
}

.card-price .period {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.card-price .custom-price {
    font-size: 1.8rem;
    font-weight: 600;
}

.annual-billing {
    font-size: 0.9rem;
    color: var(--text-secondary, #cccccc);
    margin-bottom: 30px;
    min-height: 40px; /* Garante alinhamento */
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
    flex-grow: 1; /* Empurra o botão para baixo */
}

.features-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-primary, #ffffff);
}

/* --- Botões de CTA --- */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px; 
    background-color: var(--chatbot-primary, #7d048d);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease; 
}
.cta-button:hover {
    background-color: var(--chatbot-secondary, #5c3ac2);
    transform: translateY(-2px);
}

/* --- Destaque do Plano Premium --- */
.pricing-card.highlighted {
    border-color: #7d048d; /* Cor roxa do seu tema */
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.highlighted:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%); 
    background-color: var(--chatbot-primary, #7d048d);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700; 
    text-transform: uppercase;
}

.cta-button.cta-highlighted {
    background-color: var(--chatbot-secondary, #5c3ac2);
    box-shadow: 0 4px 15px rgba(125, 4, 141, 0.4);
}

.cta-button.cta-highlighted:hover {
    background-color: #0056b3;
}

/* --- CTA Customizado e FAQ --- */
.custom-plan-cta {
    margin-top: 60px;
    font-size: 1.1rem;
}

.custom-plan-cta a {
    color: var(--chatbot-toggler-bg, #a960b6);
    font-weight: 600;
    text-decoration: none;
}

.custom-plan-cta a:hover {
    text-decoration: underline;
}

/* --- Responsividade --- */
@media (max-width: 1024px) {
    .pricing-card.highlighted {
        transform: scale(1); /* Remove o zoom em telas menores para evitar sobreposição */
    }
}

@media (max-width: 768px) {
    .precos-header h2, .pricing-header h2 {
        font-size: 2rem;
    }
    .pricing-table {
        grid-template-columns: 1fr; /* Empilha os cartões */
        max-width: 450px;
        margin: 0 auto;
    }
    .pricing-card.highlighted {
        transform: scale(1.02); /* Adiciona um leve destaque no modo empilhado */
    }

    .sales-arguments {
        margin-bottom: 60px;
        padding: 0 15px;
    }

    .argument-card h3 {
        font-size: 1.2rem;
    }
}

/* Contêiner para a seção de argumentos de venda */
.sales-arguments-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    margin-bottom: 80px;
}

/* Seção de Argumentos de Venda */
.sales-arguments {
    width: 100%;
    max-width: 1100px;
}

.arguments-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.argument-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center; /* Centraliza o conteúdo do card */
}

.argument-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.argument-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
}

.argument-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--warm-off-white-dim, #cccccc);
}

/* --- Estilos para o Toggle de Preços --- */
.price-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 8px 12px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary, #cccccc);
    transition: color 0.3s ease;
    cursor: pointer;
}

.toggle-label.active {
    color: #fff;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--chatbot-primary, #7d048d);
    transition: .4s;
    border-radius: 28px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider:before {
    transform: translateX(22px);
}

.discount-badge {
    background-color: #2ecc71;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: 5px;
    vertical-align: middle;
}

/* --- Estilização do Título da Seção --- */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary, #ffffff);
    margin-bottom: 40px; /* Aumentei o espaço inferior */
    text-align: center;
}

/* Contêiner para a seção de argumentos de venda */
.sales-arguments-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    margin-bottom: 80px;
}

/* Seção de Argumentos de Venda */
.sales-arguments {
    width: 100%;
    max-width: 1100px;
}

.arguments-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.argument-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.argument-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.argument-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
}

.argument-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--warm-off-white-dim, #cccccc);
}