
.pricing-plan {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-plan:hover {
    transform: translateY(-5px);
}

.highlighted {
    border: 2px solid #3498db;
}

.best-value {
    border: 2px solid #2ecc71;
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #2ecc71;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.plan-duration {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.plan-price span {
    font-size: 1rem;
    color: #7f8c8d;
}

.plan-description {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    min-height: 40px;
}

.plan-button {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    transition: background 0.3s ease;
}

.plan-button:hover {
    background: #2980b9;
}

.best-value .plan-button {
    background: #2ecc71;
}

.best-value .plan-button:hover {
    background: #27ae60;
}


/* Fondo diferente para planes anuales */
.pricing-card.landing-pricing-card.anual {
    background: linear-gradient(360deg, #4A6B8A 0%, #5E7D9D 100%);
}

