.pricing-box {
    background-color: var(--white, #ffffff);
    border: 1px solid var(--gray-300, #ddd);
    border-radius: 0.75rem;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.pricing-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background-color: var(--black);
    color: var(--green500);
}

.pricing-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyan500, #00b4d8);
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200, #eee);
    padding-bottom: 1.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black, #212529);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--gray-600, #6c757d);
    margin-left: 0.25rem;
    font-weight: 400;
    text-transform: lowercase;
}

.pricing-box .text-muted {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features-list li {
    font-size: 1rem;
    color: var(--gray-700, #495057);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.features-list li strong {
    color: var(--cyan500);
}

.pricing-box .btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-weight: 700;
}

.pricing-box.popular {
    border-color: var(--yellow500, #ffc107);
    border-width: 3px;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
    transform: scale(1.02);
}

.pricing-box.popular:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.4);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--yellow500, #ffc107);
    color: var(--black, #212529);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-bottom-left-radius: 0.75rem;
    text-transform: uppercase;
}

/* --- Estilos Hover para el texto dentro del Pricing Box --- */

.pricing-box:hover .price-amount {
    color: var(--green500, #2a9d8f);
}

.pricing-box:hover .price-period,
.pricing-box:hover .text-muted {
    color: var(--white, #ffffff);
}

.pricing-box:hover .features-list li {
    color: var(--white, #ffffff);
}

/* Opcional: Hacer que los features "strong" resalten en el modo hover */
.pricing-box:hover .features-list li strong {
    color: var(--yellow500, #ffc107);
}

.plan-ads {
    color: var(--gray-600);
}