/* ============================================
   KIFRA V2 - PÁGINA DE PLANOS
   ============================================ */

/* Cabeçalho da página de planos */
.planos-page .auth-header {
    padding: 8px 20px 0;
    margin-bottom: 30px;
    text-align: center;
}

.planos-page .auth-logo {
    margin-bottom: 22px;
}

.planos-page .auth-tagline {
    margin: 0 0 8px;
    font-size: 1.45rem;
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.planos-page .auth-tagline span {
    color: #22c55e;
}

.planos-subtitle {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}


/* Container de cards */
.planos-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 16px;
    margin-bottom: 40px;
}

/* Card individual */
.plano-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.plano-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: var(--plano-cor, #e2e8f0);
}

/* Badge */
.plano-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Header do card */
.plano-header {
    margin-bottom: 16px;
}

.plano-nome {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.plano-descricao {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
}

/* Preço */
.plano-preco {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.preco-gratis {
    font-size: 2.2rem;
    font-weight: 800;
    color: #22c55e;
}

.preco-moeda {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
}

.preco-valor {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.preco-periodo {
    font-size: 0.9rem;
    color: #64748b;
}

/* Recursos */
.plano-recursos {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.plano-recursos li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 0.9rem;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}

.plano-recursos li:last-child {
    border-bottom: none;
}

.plano-recursos li i {
    color: #22c55e;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.plano-recursos .recurso-ilimitado {
    color: #10b981;
    font-weight: 600;
}

.plano-recursos .recurso-destaque i {
    color: #f59e0b;
}

/* Botão */
.btn-plano {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid var(--btn-cor, #10b981);
    background: transparent;
    color: var(--btn-cor, #10b981);
}

.btn-plano:hover {
    background: var(--btn-cor, #10b981);
    color: #fff;
    transform: scale(1.02);
}

/* ============================================
   FOOTER
   ============================================ */

.planos-footer {
    margin-top: 36px;
    padding-bottom: 20px;
}

.planos-footer-login {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;

    font-size: .92rem;
    color: #64748b;
}

.planos-footer-link {
    color: #22c55e;
    font-weight: 600;
    text-decoration: none;
}

.planos-footer-link:hover {
    text-decoration: underline;
}

/* ============================================
   RECURSOS INCLUÍDOS
   ============================================ */

.planos-inclusos {
    margin: 8px 16px 40px;
    padding: 28px 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
}

.planos-inclusos-header {
    margin-bottom: 24px;
    text-align: center;
}

.planos-inclusos-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.planos-inclusos-titulo {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 1.3rem;
    line-height: 1.3;
}

.planos-inclusos-subtitle {
    margin: 0;
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.55;
}

.planos-inclusos-grid {
    display: grid;
    gap: 14px;
}

.planos-inclusos-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    background: #f8fafc;
}

.planos-inclusos-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 13px;
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
    font-size: 1.15rem;
}

.planos-inclusos-item h3 {
    margin: 0 0 4px;
    color: #0f172a;
    font-size: 0.95rem;
}

.planos-inclusos-item p {
    margin: 0;
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.45;
}

/* Responsivo */
@media (max-width: 480px) {
    .plano-card {
        padding: 24px 20px;
    }
    
    .comparativo-tabela thead th:first-child,
    .comparativo-feature {
        min-width: 140px;
    }
}

