/* ==========================================================================
   Estilos do Bloco de Preços Minimalista (Estilo Apple)
   ========================================================================== */

* {
    box-sizing: border-box;
}

   .pricing-section-container {
    background-color: #F9FAFB;
    padding: 80px 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    width: 100%;
    max-width: none;
    margin: 40px 0;
}

.pricing-wrapper {
    max-width: 1100px; /* Alinhamento padrão estrito */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px; /* Espaço elegante entre a linha de cima e a de baixo */
}

/* --- LINHA SUPERIOR (Flex Lado a Lado) --- */
.pricing-top-row {
    display: flex;
    gap: 48px;
    align-items: flex-start; /* Centraliza verticalmente o texto com o card */
}

/* Lado Esquerdo */
.pricing-header-left {
    flex: 1;
    text-align: left;
}

.pricing-section-badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #4f46e5;
    display: block;
    margin-bottom: 16px;
}

.pricing-main-title {
    font-size: clamp(32px, 10vw, 54px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;

    color: #111111;
    margin: 0 0 16px 0;
}

.pricing-main-subtitle {
    font-size: 15px;
    color: #555555;
    max-width: 540px;
    margin: 0;
    line-height: 1.6;
}

/* Lado Direito - Card de Teste */
.pricing-free-trial-container {
    width: 360px; /* Um pouco mais largo para acomodar melhor o texto no topo */
    flex-shrink: 0;
}

.pricing-trial-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.pricing-trial-badge {
    align-self: flex-start;
    display: inline-block;
    background-color: #e0f2fe;
    color: #0369a1;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.pricing-trial-title {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    line-height: 1.3;
    margin: 0 0 12px 0;
}

.pricing-trial-descr {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.pricing-trial-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.pricing-trial-item {
    font-size: 12px;
    color: #444444;
    font-weight: 500;
}

.pricing-btn-trial {
    width: 100%;
    background-color: #4f46e5;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
    transition: background-color 0.15s;
}

.pricing-btn-trial:hover {
    background-color: #4338ca;
}

/* --- LINHA INFERIOR (Grid Totalmente Livre) --- */
.pricing-bottom-row {
    width: 100%;
}


.pricing-btn-black, .pricing-btn-orange {
    margin-top: 24px; 
    width: 100%;
}

/* Grid com as 5 colunas bem distribuídas */
.pricing-columns-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0px;
    align-items: stretch;
    
}

/* Colunas de Texto Puro */
.pricing-minimal-col {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 0 11px;
    border-right: 1px solid #e5e7eb;
    position: relative; 
    z-index: 1;
}

.pricing-minimal-col:hover {
   z-index: 10; /* Traz o card para frente dos vizinhos */
    transform: translateY(-8px); /* O efeito de levantar */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); /* A sombra */
    background-color: #ffffff;
    
    /* Truque: Remove a borda no hover para não ficar um traço estranho do lado */
    border-right: none;
}

.pricing-custom-col {
    border-right: none;
}

.pricing-col-tag {
    font-size: 20px;
    font-weight: 600;
    color: #444444;
    margin-bottom: 16px;
}

.pricing-col-tag.custom-tag-color {
    color: #4f46e5;
}

.pricing-feature-list {
    list-style: disc;
    padding-left: 14px; /* Espaço para a bolinha aparecer */
    margin-bottom: 12px;
    padding-bottom: 0;
    flex-grow: 1;
}

.pricing-feature-item {
    display: flex;
    align-items: center; /* Isso garante que a bolinha e o texto fiquem no mesmo eixo vertical */
    font-size: 11px;
    color: #333;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pricing-feature-item::before {
    content: "•";
    margin-right: 8px;
    font-size: 18px; /* Tamanho da bolinha */
    line-height: 1;  /* Remove o espaçamento extra da linha */
    flex-shrink: 0;
    margin-top: -2px;
} 

.pricing-col-price {
    min-height: 60px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
    color: #111111;
}

.pricing-currency {
    font-size: 14px;
    font-weight: 600;
    margin-right: 4px;
    margin-top: 6px;
    margin-bottom: 10px;
}

.pricing-number {
    font-size: 38px; /* Voltou para o tamanho imponente original */
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111111;
}

.pricing-custom-col .pricing-number {
    font-size: 30px;        /* Tamanho ideal para o texto caber */
    font-weight: 500;
    white-space: nowrap;    /* Garante que não quebre linha */
    margin-top: 10px;       /* Ajuste fino se precisar alinhar com o R$ */
}

.pricing-custom-title-box {
    height: 45px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.pricing-custom-title {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
}

.pricing-col-descr {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

/* Botões das colunas */
.pricing-btn-black {
    width: 100%;
    background-color: #111316;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.15s;
}

.pricing-btn-black:hover {
    background-color: #22252a;
}

.pricing-btn-orange {
    width: 100%;
    background-color: #e27838;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.15s;
}

.pricing-btn-orange:hover {
    background-color: #cf6627;
}

/* Responsividade Responsável */
@media (max-width: 968px) {
    .pricing-top-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .pricing-free-trial-container {
        width: 100%;
    }
    .pricing-columns-grid {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0; /* Reduzimos de 20px para 12px. Isso já dá 8px de largura extra para cada card! */
        align-items: stretch;
    }
    .pricing-minimal-col {
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding: 0 15px;
        min-width: 0;
        border-right: none;
    }
}