/* Página Plano PRO Semestral — layout centralizado, card de conversão */

.pro-plan-page {
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0 3rem;
}

.pro-plan-hero {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 2rem;
    padding: 0 0.75rem;
}

.pro-plan-hero__title {
    font-weight: 800;
    font-size: clamp(1.5rem, 4.5vw, 2.125rem);
    line-height: 1.2;
    color: var(--dark-solid, #0f172a);
    letter-spacing: -0.02em;
}

.pro-plan-hero__subtitle {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    color: var(--text-muted, #64748b);
    margin-top: 0.65rem;
    line-height: 1.5;
}

/* Card com “borda” em gradiente */
.pro-plan-card-wrap {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 0 0.75rem;
    position: relative;
}

.pro-plan-card-wrap::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 1.35rem;
    background: linear-gradient(135deg, var(--primary-color, #10b981) 0%, #0369a1 100%);
    z-index: 0;
    opacity: 0.95;
    box-shadow: 0 20px 50px -12px rgba(4, 120, 87, 0.35);
}

.pro-plan-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem 1.5rem 1.75rem;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06);
}

.pro-plan-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: linear-gradient(135deg, #059669, var(--brand-green, #047857));
    color: #fff;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.4);
    white-space: nowrap;
}

.pro-plan-price {
    text-align: center;
    padding-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.pro-plan-price__value {
    font-weight: 800;
    font-size: clamp(2rem, 6vw, 2.5rem);
    color: var(--dark-solid, #0f172a);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.pro-plan-price__period {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted, #64748b);
}

.pro-plan-price__equiv {
    font-size: 0.875rem;
    color: var(--text-muted, #64748b);
    margin-top: 0.35rem;
}

.pro-plan-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.pro-plan-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.95rem;
    line-height: 1.45;
    color: #334155;
    margin-bottom: 0.85rem;
}

.pro-plan-benefits li:last-child {
    margin-bottom: 0;
}

.pro-plan-benefits .bi-check-circle-fill {
    flex-shrink: 0;
    margin-top: 0.12rem;
    font-size: 1.1rem;
    color: #10b981;
}

.pro-plan-cta {
    width: 100%;
    font-weight: 800 !important;
    font-size: 1rem !important;
    padding: 0.85rem 1.25rem !important;
    border: none !important;
    border-radius: 0.75rem !important;
    background: linear-gradient(135deg, #059669, var(--brand-green, #047857)) !important;
    color: #fff !important;
    box-shadow: 0 10px 25px -5px rgba(4, 120, 87, 0.45);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pro-plan-cta:hover {
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px -5px rgba(4, 120, 87, 0.5);
}

.pro-plan-cta:active {
    transform: translateY(0);
}

.pro-plan-trust {
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 1rem;
    line-height: 1.4;
}

.pro-plan-trust .bi-shield-lock {
    vertical-align: -0.1em;
}

@media (min-width: 576px) {
    .pro-plan-card {
        padding: 2.25rem 2rem 2rem;
    }
}
