/* LP Growth Capital Method (/growth) — complementa dealmatch/index.css e advisory/index.css */

/* Card de estatística — usado na section clara "O problema" */
.growth-stat-card {
    padding: 1.75rem 1.5rem;
    border-radius: 1.125rem;
    background: #f4f4f4;
    border: none;
}

/* Card de prova social — variante clara do advisory-outcome-card (section "Validado na prática") */
.growth-outcome-card {
    position: relative;
    overflow: hidden;
    padding: 1.75rem 1.5rem;
    border-radius: 0.75rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.growth-outcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #ff0062;
}

.growth-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2.375rem 2rem 2rem;
    border-radius: 1.375rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.growth-plan-card--light {
    background: #ffffff;
    border: 1px solid #e9e9e9;
    color: #373737;
}

.growth-plan-card--light:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
}

.growth-plan-card--pink {
    background: #ff0062;
    border: 1px solid #ff0062;
    color: #ffffff;
    box-shadow: 0 24px 50px -18px rgba(255, 0, 98, 0.55);
    transform: scale(1.04);
    z-index: 1;
}

.growth-plan-card--pink:hover {
    transform: scale(1.04) translateY(-6px);
}

.growth-plan-card--dark {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    color: #ffffff;
}

.growth-plan-card--dark:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.25);
}

.growth-plan-badge {
    display: inline-block;
    width: fit-content;
    margin-bottom: 1.25rem;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.growth-plan-badge--light {
    background: #f4f4f4;
    color: #6e6e6e;
}

.growth-plan-badge--pink {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.growth-plan-badge--dark {
    background: rgba(255, 0, 98, 0.12);
    color: #ff0062;
}

.growth-plan-card__name {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.375rem;
}

.growth-plan-card__range {
    font-size: 0.875rem;
    opacity: 0.75;
    margin-bottom: 1.375rem;
    line-height: 1.45;
}

.growth-plan-card__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 0.375rem;
}

.growth-plan-card__amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.growth-plan-card__period {
    font-size: 0.875rem;
    opacity: 0.7;
}

.growth-plan-card__desc {
    font-size: 0.875rem;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 1.625rem;
}

.growth-plan-features {
    list-style: none;
    margin: 0 0 1.875rem;
    padding: 0;
    flex-grow: 1;
}

.growth-plan-features li {
    display: flex;
    gap: 0.625rem;
    align-items: flex-start;
    padding: 0.5625rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    font-size: 0.90625rem;
    line-height: 1.4;
}

.growth-plan-features li:first-child {
    border-top: none;
    padding-top: 0;
}

.growth-plan-features li::before {
    content: '✓';
    flex-shrink: 0;
    font-weight: 700;
    line-height: 1.35;
}

.growth-plan-card--light .growth-plan-features li {
    border-top-color: #e9e9e9;
}

.growth-plan-card--light .growth-plan-features li::before {
    color: #ff0062;
}

.growth-plan-card--pink .growth-plan-features li {
    border-top-color: rgba(255, 255, 255, 0.22);
}

.growth-plan-card--pink .growth-plan-features li::before {
    color: #ffffff;
}

.growth-plan-card--dark .growth-plan-features li {
    border-top-color: #2a2a2a;
}

.growth-plan-card--dark .growth-plan-features li::before {
    color: #ff0062;
}

.growth-plan-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: auto;
    padding: 0.875rem 1.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.growth-plan-cta-outline {
    background: transparent;
    border: 1.5px solid #373737;
    color: #373737;
}

.growth-plan-cta-outline:hover {
    background: #373737;
    color: #ffffff;
}

.growth-plan-cta-white {
    background: #ffffff;
    border: 1.5px solid #ffffff;
    color: #373737;
}

.growth-plan-cta-white:hover {
    background: #ffe0ef;
    border-color: #ffe0ef;
}

.growth-plan-cta-pink {
    background: #ff0062;
    border: 1.5px solid #ff0062;
    color: #ffffff;
}

.growth-plan-cta-pink:hover {
    background: #e6005a;
    border-color: #e6005a;
}

@media (max-width: 768px) {
    .growth-plan-card--pink {
        transform: none;
    }

    .growth-plan-card--pink:hover {
        transform: translateY(-6px);
    }
}

/* Cards de valor — section "Mais do que uma plataforma" (modelo: value-card) */
.growth-value-card {
    padding: 1.75rem 1.625rem;
    border-radius: 1rem;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
}

.growth-value-card--feature {
    border-color: #ff0062;
    background: linear-gradient(155deg, #2a0016, #1a1a1a);
}

.growth-value-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #ff0062;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.growth-value-card__text {
    font-size: 0.90625rem;
    color: #d6d6d6;
    line-height: 1.55;
}

/* Card de pilar — legado (não usado na LP atual) */
.growth-pilar-card {
    padding: 1.75rem 1.5rem;
    border-radius: 1rem;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.growth-pilar-card:hover {
    border-color: rgba(255, 0, 98, 0.35);
    background: linear-gradient(155deg, #2a0016, #1a1a1a);
}

/* Stepper DEALIST — section "O método que dá nome à empresa" */
.growth-method-stepper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.growth-letter-card {
    flex: 1 1 7.375rem;
    min-width: 7.375rem;
    padding: 1.375rem 1.125rem 1.25rem;
    border-radius: 1rem;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.growth-letter-card__L {
    font-size: 2.875rem;
    font-weight: 700;
    line-height: 1;
    color: #9a9a9a;
    transition: color 0.25s ease;
}

.growth-letter-card__name {
    margin-top: 0.625rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9a9a9a;
    transition: color 0.25s ease;
}

.growth-letter-card__desc,
.growth-letter-card__evidence-tag,
.growth-letter-card__evidence-text {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}

.growth-letter-card__desc {
    margin-top: 0;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #e8e8e8;
}

.growth-letter-card__evidence-tag {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ff0062;
}

.growth-letter-card__evidence-text {
    font-size: 0.75rem;
    line-height: 1.4;
    color: #bdbdbd;
}

.growth-letter-card--active {
    background: linear-gradient(155deg, #2a0016, #1a1a1a);
    border-color: #ff0062;
    transform: translateY(-6px);
}

.growth-letter-card--active .growth-letter-card__L,
.growth-letter-card--active .growth-letter-card__name {
    color: #ff0062;
}

.growth-letter-card--active .growth-letter-card__desc {
    max-height: 5.625rem;
    opacity: 1;
    margin-top: 0.5rem;
}

.growth-letter-card--active .growth-letter-card__evidence-tag {
    max-height: 1.25rem;
    opacity: 1;
    margin-top: 0.625rem;
}

.growth-letter-card--active .growth-letter-card__evidence-text {
    max-height: 3.75rem;
    opacity: 1;
    margin-top: 0.125rem;
}

.growth-stepper-hint {
    margin-top: 1.125rem;
    font-size: 0.8125rem;
    color: #9a9a9a;
}

@media (max-width: 640px) {
    .growth-method-stepper {
        flex-direction: column;
    }

    .growth-letter-card {
        flex: 1 1 auto;
        min-width: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .growth-letter-card,
    .growth-letter-card__L,
    .growth-letter-card__name,
    .growth-letter-card__desc,
    .growth-letter-card__evidence-tag,
    .growth-letter-card__evidence-text {
        transition: none;
    }
}
