

.pricing-section {
    background-color: #1a094a;
    padding: 100px 20px;
    color: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.pricing-header p {
    font-size: 20px;
    color: #c2c2f0;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.pricing-card {
    background: linear-gradient(135deg, #1a094a, #3b237e);
    border-radius: 20px;
    padding: 40px;
    width: 300px;
    text-align: center;
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.7);
}

.pricing-card.featured::before {
    content: 'Más Popular';
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: #FF6F61;
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: bold;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.price {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    color: white;
}

.price span {
    font-size: 16px;
    color: #c2c2f0;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.features li {
    margin: 15px 0;
    color: #c2c2f0;
}

.select-plan-btn {
    background-color: white;
    color: #1a094a;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.select-plan-btn:hover {
    background-color: #e6e6e6;
    transform: scale(1.05);
}

.featured .select-plan-btn {
    background-color: #FF6F61;
    color: white;
}

.featured .select-plan-btn:hover {
    background-color: #FF4A3B;
}

@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
        max-width: 300px;
    }
    
    .nav-links {
        display: none;
    }
}